location 的方法
location 是 window 物件下的特徵,你可以用 window.location;也可以省略 window,直接用 location。
assign()
下載 url 的網頁。其語法是:
location.assign( url )
- 程式用法:
<a href='javascript:location.assign("http://gamelily.blogspot.com/2008/11/blog-post_7559.html#sh")'>
射擊遊戲</a> - 執行結果:
reload()
重新下載當下 URL 的文件。其語法是:
location.reload( 重讀 )
重讀設為 true,則至主機重讀網頁;重讀為 false 或未設,則自緩衝區讀舊網頁。
- 程式用法:
<a href='javascript:location.reload(false)'>
重整此頁</a> - 執行結果:
replace()
用 url 指定的網頁,取代當下頁;當下頁會從 history 中清除,這點與上面的 assign() 不同。其語法是:
location.replace( url )
- 程式用法:
<a href='javascript:location.replace("http://gamelily.blogspot.com/2008/11/blog-post_7559.html#ac")'>
動作遊戲</a> - 執行結果:
toString()
傳回 URL 的字串。
- 程式用法:
<script type='text/javascript'>
document.write( decodeURI( location.toString() ) );
</script> - 執行結果:
http://ant4js.blogspot.com/2009/01/locationmth.html