2009年1月11日

location 方法

特徵 | 方法
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


©2008-2009 by ant2legs, All Rights Reserved. ant2legs 擁有其製作的文章,圖片與程式的著作權,所有權利保留。