页面刷新类型:
1、window.location.reload 刷新。
window.location.reload()与window.location.href=window.location.href都可以刷新页面。
注:
window.location.reload()刷新页面时,页面若有数据提交会提示是否提交数据,就是我们经常看到的那个讨厌的提示框。window.location.href=window.location.href则不会。
2、frame框架刷新。
代码如下:
<html>
<head>
<title> 右边框 </title>
<script type="text/javascript">
function doResh(){
window.parent.frames["leftfr"].location = "http://www.baidu.com";
}
</script>
</head>
<body>
<b>右边框</b>
<input type="button" onClick="doResh();" value="刷新"/>
</body>
</html>
记住:
window.location.href的要点,window, parent,opener。
window location href 刷新,布布扣,bubuko.com
时间: 2024-10-13 16:21:28