HTML 5 快速導覽 - URL

URL 為 Uniform Resource Locator 或 Universal Resource Locator 的頭字母縮寫詞,中文稱之為統一資源定位器,簡言之就是我們所用的網址




語法如下
scheme://domain:port/path?query_string#fragment_id


主要分成六個部份
  • scheme://
  • domain
  • :port
  • /path
  • ?query_string
  • #fragment_id


scheme 為網路通訊協定名稱, WWW 通常是用 HTTP 。


domain 為伺服器網域名稱,例如 Google 台灣是用 www.google.com.tw


port 為埠號,在 HTTP 中通常可以省略。


path 為伺服器中檔案路徑名稱。


?query_string 為查詢字串,通常在伺服器中使用程式才會出現。


#fragment_id 則是對應到網頁中某個元素的 id 屬性 (attribute) ,此 id 屬性稱為錨點,透過 URL 網址,瀏覽器 (broswer) 會直接將顯示網頁的座標移至該元素。


中英文術語對照
統一資源定位器uniform resource locator, universal resource locator
屬性attribute
瀏覽器broswer


您可以繼續參考
基本概念


相關目錄
HTML 5 快速導覽
HTML, CSS 教材
首頁


參考資料
http://www.whatwg.org/specs/web-apps/current-work/multipage/urls.html#urls
http://www.w3.org/TR/2011/WD-html5-20110525/urls.html#urls
http://en.wikipedia.org/wiki/Uniform_resource_locator

沒有留言: