javascript当中location的用法
马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。
例 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>