<iframe name="frm" id="frm" frameborder=0 height="0" scrolling="no" style="visibility:hidden"></iframe>
需要iframe生效的时候,给frm指定对应的页面则该页面会被调用
eg:
document.getElementById("frm").src="xxxxx.asp?grp="+group+ "&ord="+order;
被调用界面可以通过Request.QueryString("ord")来取值。
另,也可以通过document.frames['frm'].document.getElementById('xxxx').value这种方式给iframe里的控件赋值
eg:
document.frames['frmmedia'].document.getElementById('player').URL = 'D:/test.mp3';
下面是网上路过的资料,瞄一眼~
function reloadleft(){
var leftiframeid = document.getElementById('left');//left为对应iframe的id
leftiframeid.src = "left.html";//ileft.html为frame的页面
}
链接里面加入onclick="reloadleft()"就可以了。
<a href="contact.html" target="main" title="点击查看" onclick="reloadleft()">联系我们</a>
跳转页面的js:window.location.href="new.html"
------------------------
下面是搜集的子窗口刷新父窗口的js
self.opener.location.reload();
window.opener.location.reload(); //关键是这句:刷新父窗口
------------------------
Web开发中适当运用一些弹出子窗口有很多好处,可以节省页面设计代价,获得好的用户体验,在最近项目开发中我遇到了几个父子窗口的问题,现在整理给大家,希望有所帮助.
情景一: 打开某一子窗口, 子窗口中任一按钮点击时候不能弹出新页面,进行完操作后,关闭该子窗口,刷新父窗口.
1: 页面A:父窗口,其中有一个打开子窗口的链接,<a href="#"onclick="open()">页面C</a>
A中有如下js代码:
2: 页面B,此为中间页,起过渡作用
B html 代码如下:
在下图中,我点击"添加照片"链接然后弹出子窗口,在子窗口中选择后点击"添加照片"按钮,子窗口自动关闭,并且父窗口"已添加照片:"下面列出了我选择的照片。
<iframe src="1.htm" name="ifrmname" id="ifrmid"></iframe>
方案一:用iframe的name属性定位
<input type="button" name="Button" value="Button"
onclick="document.frames('ifrmname').location.reload()">
或
<input type="button" name="Button" value="Button"
onclick="document.all.ifrmname.document.location.reload()">
方案二:用iframe的id属性定位
<input type="button" name="Button" value="Button"
onclick="ifrmid.window.location.reload()">
终极方案:当iframe的src为其它网站地址(跨域操作时)
<input type="button" name="Button" value="Button"
onclick="window.open(document.all.ifrmname.src,'ifrmname','')">
总结JavaScript(Iframe、window.open、window.showModalDialog)父窗口与子窗口之间的操作
http://www.04js.cn/content.asp?id=1233