我main_page.htm
有
<frameset rows="30,*" frameborder=0 border=0>
<frame name="top_frame" src="top.htm">
<frame name="bottom_frame" src="bottom.htm">
</frameset>
bottom.htm 中的代码是:
<div id="BottomFrameTest">Hi There!</div>
现在如何更改上面的文本,top.htm
其中位于 top_frame
top.htm 中的代码是:
<script>
function ChnageDivText()
{
$("#BottomFrameTest").html("Hello World. This text is changed");
}
</script>
<body>
<input type="button" value="Change Text" onclick="ChnageDivText()" />
</body>
上面的代码显然不起作用。我如何与bottom_frame
from沟通top_frame
?