2.location
例 1.2(locationIEFF.html)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<SCRIPT LANGUAGE="JavaScript">
<!--
window.onload=function(){
/*round:si she wu ru,
- myLocation.reload(aFlag)
Argument list: aFlag A Boolean flag forcing a reload from the server when set to true
*/
var num = Math.round(Math.random()*100);
document.getElementById("num").innerHTML=num;
}
function fun()
{ /*based on experiment, you can use any one of the following three statements.
Location.href (Property)
The URL for the page currently on display in the window owning this location.
Property/method value type: String primitive
JavaScript syntax: - myLocation.href
马克-to-win:If you set this property, the window will load the new URL in, and replace the old content with the new.
*/
location.href="navigatorIEFF.html";//也可以用location.replace("navigator.html")
//location="navigator.html";
}
//-->
</SCRIPT>
</HEAD>
<BODY>
<p>刷新演示:<div id="num"></div></p>
<INPUT TYPE="button" value="刷新一下从新获取一个随机数" onclick="location.reload()">
<p>转址演示:</p>
<INPUT TYPE="button" value="将地址转到navigator.html" onclick="fun()">
</BODY>
</HTML>
更多请见:https://blog.youkuaiyun.com/qq_43650923/article/details/103045165
本文通过实例展示了HTML中location对象的应用,包括页面刷新与跳转的方法。具体介绍了如何利用location.reload进行页面刷新,以及通过location.href、location.replace实现页面跳转。
273

被折叠的 条评论
为什么被折叠?



