1. 程式人生 > 其它 >javascript當中location的用法

javascript當中location的用法

javascript當中location的用法

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.οnlοad=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="重新整理一下從新獲取一個隨機數" οnclick="location.reload()">
<p>轉址演示:</p>
<INPUT TYPE="button" value="將地址轉到navigator.html" οnclick="fun()">
</BODY>
</HTML>

更多內容請見原文,文章轉載自:

https://blog.csdn.net/qq_43650923/article/details/103045165