初学,向大家请教一下:
我设定左右两个框架,左框架选择工程名字,右框架出现其对应的几个单元工程。
这个该怎么编?
多谢!
左框架
<html><head></head>
<body>
<script language="javascript">
function a()
{
var txt1=document.getElementById("b1").innerHTML
var txt2=document.getElementById("b2").innerHTML
var temp=txt1
document.getElementById("b1").innerHTML=txt2
document.getElementById("b2").innerHTML=temp
}
</script>
<input type="button" name="aa" id="a1" value="互换"
onclick="top.window.frames[1].document.getElementById('a').innerHTML='bbbb'">
</body></html>
右框架
<html><head></head>
<body>
<div id="a">aaaa</div>
</body></html>
主框架
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<frameset cols="80,*" frameborder="no" border="0" framespacing="0">
<frame src="a.html" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" />
<frame src="b.html" name="mainFrame" id="mainFrame" />
</frameset>
<noframes><body>
</body></noframes>
</html>
[此贴子已经被作者于2006-3-26 22:37:26编辑过]