雖然這裡的 location 為 window 的屬性,然而 location 也可以單獨當成物件使用。
location 有以下的屬性 (attribute)
名稱 | 描述 | 示例 |
---|---|---|
hash | 網址中井字號 # 的部份 | #test |
host | 主機名稱 | [www.google.com]:80 |
hostname | 網域名稱 | www.google.com |
href | 完整網址 | http://[www.google.com]:80/search?q=devmo#test |
pathname | 網址中的路徑名稱 | /search |
port | 網址中的埠號 | 80 |
protocol | 網址中的通訊協定 | http: |
search | 網址中 ?q= 的部份 | ?q=devmo |
另有以下的方法 (method)
名稱 | 描述 |
---|---|
assign(url) | 載入 url 的網址頁面到 history 中的下一頁 |
reload(forceget) | 重新載入(更新、刷新)目前網址頁面 |
replace(url) | 置換網頁到 url 位址 |
toString() | location 的字串形式 |
舉例如下
function run() { var s = document.getElementById("show"); s.innerHTML = window.location.toString(); } /* 《程式語言教學誌》的範例程式 http://pydoing.blogspot.com/ 檔名:window006.js 功能:示範 JavaScript 程式 作者:張凱慶 時間:西元 2011 年 8 月 */
此例利用 id 屬性為 show 的元素顯示 location 的字串形式
var s = document.getElementById("show"); s.innerHTML = window.location.toString();
我們以下面的 HTML 文件載入 window006.js
<!DOCTYPE html> <html> <head> <title>HTML DOM DEMO</title> <script src="window006.js" type="text/javascript"></script> </head> <body> <input type="button" value="RUN" onclick="run();"> <div id="show"></div> </body> </html> <!-- 《程式語言教學誌》的範例程式 http://pydoing.blogspot.com/ 檔名:window006.html 功能:示範 JavaScript 程式 作者:張凱慶 時間:西元 2011 年 8 月 -->
瀏覽器 (broswer) 開啟,點擊 RUN 後如下結果
中英文術語對照 | |
---|---|
屬性 | attribute |
方法 | method |
瀏覽器 | broswer |
您可以繼續參考
window 物件
- 屬性
- window.closed
- window.document
- window.frameElement
- window.frames
- window.history
- window.location
- window.innerHeight
- window.innerWidth
- window.length
- window.name
- window.navigator
- navigator.appCodeName
- navigator.appName
- navigator.appVersion
- navigator.buildID
- navigator.cookieEnabled
- navigator.language
- navigator.mimeTypes
- navigator.onLine
- navigator.oscpu
- navigator.platform
- navigator.plugins
- navigator.product
- navigator.userAgent
- navigator.vendor
- navigator.javaEnabled()
- window.opener
- window.outerHeight
- window.outerWidth
- window.pageXOffset
- window.pageYOffset
- window.parent
- window.screen
- window.screen.availTop
- window.screen.availLeft
- window.screen.availHeight
- window.screen.availWidth
- window.screen.colorDepth
- window.screen.height
- window.screen.left
- window.screen.pixelDepth
- window.screen.top
- window.screen.width
- window.screenX
- window.screenY
- window.scrollMaxX
- window.scrollMaxY
- window.scrollX
- window.scrollY
- window.self
- window.status
- window.top
- 方法
- window.close()
- window.open(sU, sN, sF)
- window.alert()
- window.back()
- window.blur()
- window.focus()
- window.clearInterval(id)
- window.setInterval(f, d)
- window.clearTimeout(id)
- window.setTimeout(f, d)
- window.confirm(m)
- window.escape(r)
- window.unescape(e)
- window.forward()
- window.getComputedStyle(e)
- window.home()
- window.moveBy(x, y)
- window.moveTo(x, y)
- window.print()
- window.prompt(t, v)
- window.resizeBy(x, y)
- window.resizeTo(x, y)
- window.scroll(x, y)
- window.scrollBy(x, y)
- window.scrollByLines(n)
- window.scrollByPages(n)
- window.scrollTo(x, y)
相關目錄
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
沒有留言:
張貼留言