标签:style c java tar a get
浮层内嵌iframe及frame集合窗口,刷新父页面的多种方法
parent.location.reload();
parent.location.reload();
弹出子页面
window.opener.location.reload();
window.opener.location.reload();
子窗口刷新父窗口
self.opener.location.reload();
self.opener.location.reload();
刷新以open()方法打开的窗口
window.opener.location.href=window.opener.location.href;
window.opener.location.href=window.opener.location.href;
刷新以winodw.showModelDialog()方法打开的窗口
Javascript代码
window.parent.dialogArguments.document.execCommand(‘Refresh‘);
方法二 :
在Head中添加
在body中添加
在底部脚本中: reload.href = location.href + "&random=" +
Math.random()*5000;
reload.reload;
JS刷新窗口的几种方式,搜素材,soscw.com
JS刷新窗口的几种方式
标签:style c java tar a get
原文地址:http://www.cnblogs.com/xxjudfc/p/3733447.html