frame框架jsp:(只说明意思,不细写了)
<frameset>
<frame name="a" src=\‘#\‘" /frame>
<frame name="b" src=""></frame>
</frameset>
在a.jsp中:
<div onclick="tiao()">点击跳转到b框架</div>
js:
function tiao(){
window.parent.b.location.href="http://www.baidu.com";
}
这样,只要在name为a的框架中点击,百度页面就会在b中显示。
本文出自 “IT邋遢员” 博客,请务必保留此出处http://3795780.blog.51cto.com/3785780/1359052