鼠标右键新窗口打开问题
A页面中有一个导航条和iframe框架,点击导航条的链接在iframe中显示B页面,可是当我鼠标右键新窗口中打开导航条链接时,弹出的页面只是单独的B页面,我想弹出的页面是B页面在A页面里的iframe中显示。哪位大哥能帮帮忙。谢谢!
[解决办法]
<frameset rows="64,*" frameborder="NO" border="0" framespacing="0">主要是name和target的问题
<frame src="index.html&id=000" noresize="noresize" frameborder="0" name="topFrame" scrolling="no" marginwidth="0" marginheight="0" target="main" />
<frameset cols="200,*" rows="800,*" id="frame">
<frame src="index.html&id=001" name="leftFrame" noresize="noresize" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" target="main" />
<frame src="index.html&id=002" name="main" marginwidth="0" marginheight="0" frameborder="0" scrolling="auto" target="_self" />
</frameset>
</frameset>