时间:2021-07-01 10:21:17 帮助过:5人阅读
<frameset rows="108,*,30" border="0" frameSpacing="0" frameBorder="0">
<frame name="header" scrolling="no" noresize src="base/header" />
<frame id="memuMain" name="main" scrolling="no" noresize src="${ctx}/index.jsp" />
<frame name="footer" scrolling="no" noresize src="base/footer" />
<noframes>
<body>
<p>此网页使用了框架,但您的浏览器不支持框架。</p>
</body>
</noframes>
</frameset>
在IE和Firefox下可以这样写:
代码如下:
function changeMenu(menu_id){
header.window.changeMenu(menu_id);
}
或者是:
代码如下:
function changeMenu(menu_id){
frames[0].changeMenu(menu_id);
}
都可以 ,
在Chrome下只能用第二种写法,所以需要考虑多种浏览器兼容问题的时候应采用第二种写法。