名稱 | 型態 | 描述 |
---|---|---|
hash | String | URL 中有 # 的部份,例如 #test |
host | String | 網域名稱與埠號,例如 [www.google.com]:80 |
hostname | String | 網域名稱,例如 www.google.com |
href | String | URL 網址,例如 http://[www.google.com]:80/ |
pathname | String | 路徑名稱,例如 /search |
port | String | 埠號,例如 80 |
protocol | String | 網路傳輸協定,例如 http: |
search | String | URL 中有 ? 的部份,例如 ?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
- 屬性
- document.activeElement
- document.alinkColor
- document.anchors
- document.bgColor
- document.cookie
- document.documentElement
- document.documentURI
- document.forms
- document.images
- document.inputEncoding
- document.lastModified
- document.lastStyleSheetSet
- document.linkColor
- document.links
- document.location
- document.plugins
- document.preferredStyleSheetSet
- document.readyState
- document.referrer
- document.selectedStyleSheetSet
- document.styleSheets
- document.styleSheetSets
- document.title
- document.URL
- document.vlinkColor
- 方法
- document.close()
- document.createAttribute(name_str)
- document.createElement(element_str)
- document.createTextNode(text_str)
- document.enableStyleSheetsForSet(ss_str)
- document.getElementById(id_str)
- document.getElementsByClassName(cn_str)
- document.getElementsByName(n_str)
- document.getElementsByTagName(tn_str)
- document.hasFocus()
- document.open()
- document.write(str)
- document.writeln(str)
相關目錄
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
沒有留言:
張貼留言