window location href 刷新
2020-12-13 03:56
YPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
标签:window frame
页面刷新类型:
1、window.location.reload 刷新。
window.location.reload()与window.location.href=window.location.href都可以刷新页面。
注:
window.location.reload()刷新页面时,页面若有数据提交会提示是否提交数据,就是我们经常看到的那个讨厌的提示框。window.location.href=window.location.href则不会。
2、frame框架刷新。
代码如下:
function doResh(){
window.parent.frames["leftfr"].location = "http://www.baidu.com";
}
右边框
记住:
window.location.href的要点,window, parent,opener。
window location href 刷新,搜素材,soscw.com
window location href 刷新
标签:window frame
原文地址:http://q1ngp2ng.blog.51cto.com/1123150/1433601