时间:2021-07-01 10:21:17 帮助过:3人阅读
<iframe method="post" id ="IFrameName" src="aa.htm" ></iframe>
aa.htm内容如下:
代码如下:
<input type ="button" value ="刷新" onclick ="aa()"/>
function aa() {
//parent.location.replace(parent.location.href);//服务器端重新创建页面
parent.document.location.reload();//相当于F5
//window.location.href(parent.location.href);//iframe内容重定向
}