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

location.replace() 將目前網頁轉換到參數指定的網址。



舉例如下
function run() {
    window.location.replace("http://www.google.com.tw/");    
}

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


此例以 Google 的臺灣首頁當作轉換後的網址
window.location.replace("http://www.google.com.tw/");


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

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


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



注意瀏覽器的上一頁(左上方向左的箭頭)無法作用,因為使用 location.assign() 等同新開啟載入網頁,因此不會傳遞訊息給 history 。


中英文術語對照
屬性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

沒有留言: