HTML DOM 快速導覽 - 文件物件 document 的屬性 location

document.location 回傳文件的 location 物件 (object) ,該物件有以下屬性 (attribute)

名稱型態描述
hashStringURL 中有 # 的部份,例如 #test
hostString網域名稱與埠號,例如 [www.google.com]:80
hostnameString網域名稱,例如 www.google.com
hrefStringURL 網址,例如 http://[www.google.com]:80/
pathnameString路徑名稱,例如 /search
portString埠號,例如 80
protocolString網路傳輸協定,例如 http:
searchStringURL 中有 ? 的部份,例如 ?q=devmo


另有以下的方法 (method)
名稱(參數)描述
assign(url)轉換網址到指定的 url
reload(forceget)重新載入網頁, forceget 為 Boolean
replace(url)更改網址到指定的 url
toString()回傳 location 的 String



舉例如下
function run() {
    var s = document.getElementById("show");
    s.innerHTML = document.location.toString();
}

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


此例中直接用 document 的 location 屬性的 toString() 方法,取得 location 的字串,然後在 id 屬性為 show 的元素中顯示結果
s.innerHTML = document.location.toString();


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

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


瀏覽器 (broswer) 開啟,按下 RUN 的結果如下



document.location 與 window.location 兩者是相同的 location 物件。


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


您可以繼續參考
基本概念
文件物件 document


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


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

沒有留言: