不知道我有没有理解错^_^frame.html
=================
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE></TITLE>
</HEAD>
<frameset rows='8%,*'>
<frame name='Top' src='Top.htm'>
<frameset cols='10%,*'>
<frame name='Left' src='LEFT.htm'>
<frame name='Right' src='RIGHT.htm'>
</frameset>
</frameset>
</HTML>LEFT.htm
==============
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE></TITLE>
</HEAD>
<BODY>
<INPUT id=button1 type=button value=Sohu name=button1 onclick="clk('1')"><BR>
<INPUT id=button1 type=button value=Csdn name=button1 onclick="clk('2')"><BR>
<INPUT id=button1 type=button value=Button name=button1  onclick="clk('3')"><BR>
</BODY>
</HTML>
<script language='javascript'>
function clk(st) {
if(st=='1')
window.top.Right.location.href = "http://www.sohu.com";
else if (st=='2') 
window.top.Right.location.href = "http://www.csdn.net";
else if( st=='3')
window.top.Right.location.href = "kkk.html";
}
</script>