我在网页下面
<frameset rows = "10%,*">
<frameset>
<frame src="top_1.html" name = "top" id = "top" >
</frameset>
<frameset cols = "50%,50%">
<frame src="leftFrame.html" name = "left" id = "left">
<frame src="rightFrame.html" name = "right" id = "right">
</frameset>
</frameset>
左右框架都有一个功能,我想从顶部框架调用这些功能。
我试过了 的 parent.left.functionName; 的 parent.right.functionName;
并且它可以与InternetExplorer一起使用,但是当我在Chrome中打开网页时,它会抛出以下错误:
未捕获的DOMException:使用origin&#34; null&#34;阻止了一个帧。从访问跨源框架。
任何人都可以帮助我,我的代码有什么问题。
我尝试使用document.getElementById(&#34; left&#34;)。functionname()但没有运气
提前致谢