HTML DOM 快速導覽 - location 物件的方法 reload()

location.reload() 重新載入(更新、刷新)目前網址頁面。



舉例如下
function run() {
    window.location.reload();
    window.open("window008_1.html", "", 
                "width=200, height=100");
}

/* 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:window008.js
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 */


此例呼叫 location.reload() 後,開啟一個新視窗顯示重新載入網頁完畢
window.location.reload();
window.open("window008_1.html", "", 
            "width=200, height=100");


我們以下面的 HTML 文件載入 window008.js
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
<script src="window008.js" type="text/javascript"></script>
</head>
<body>
<input type="button" value="RUN" onclick="run();">
</body>
</html>

<!-- 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:window008.html
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 -->


以下為新視窗的網頁內容
<!DOCTYPE html>
<html>
<head>
</head>
<body>
Done!
</body>
</html>

<!-- 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:window008_1.html
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 -->


瀏覽器 (broswer) 開啟,點擊 RUN 後如下結果



中英文術語對照
屬性attribute
方法method
瀏覽器broswer


您可以繼續參考
window 物件


相關目錄
HTML DOM 快速導覽
JavaScript 教材
首頁


參考資料
https://developer.mozilla.org/en/DOM/window.location
http://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#dom-location

沒有留言: