關於window.location能夠獲取的信息

window.location方法後還還能夠帶href,search等參數,下面咱們來看看獲取url各項參數的辦法。javascript

URL即:統一資源定位符 (Uniform Resource Locator, URL)
完整的URL由這幾個部分構成:
scheme://host:port/path?query#fragment
scheme:通訊協議
經常使用的http,ftp,maito等php


http://localhost/test/test.htm?id=1
代碼以下 複製代碼html

<html>
<head>
</head>
<body>
<script languge=javascript>
alert(window.location.pathname); --返回 /test/test.htm
alert(window.location.search); --返回 ?id=1
alert(window.location.href); --返回 http://localhost/test/test.htm?id=1
</script>
</body>
</html>java

location對象 含有當前URL的信息. 屬性 href 整個URL字符串.
protocol 含有URL第一部分的字符串,如http:
host 包含有URL中主機名:端口號部分的字符串.如//www.cenpok.net/server/
hostname 包含URL中主機名的字符串.如http://www.cenpok.net ;
port 包含URL中可能存在的端口號字符串.
pathname URL中"/"之後的部分.如~list/index.htm
hash "#"號(CGI參數)以後的字符串.
search "?"號(CGI參數)以後的字符串.瀏覽器

 


對於這樣一個URL
代碼以下 複製代碼post

http://www.php230.com :80/fisker/post/0703/window.location.html?ver=1.0&id=6#imhereurl

咱們能夠用javascript得到其中的各個部分
1, window.location.href
整個URl字符串(在瀏覽器中就是完整的地址欄)
本例返回值:
代碼以下 複製代碼
http://www.php230.com :80/fisker/post/0703/window.location.html?ver=1.0&id=6#imherespa

2,window.location.protocol
URL 的協議部分
本例返回值:http:.net

3,window.location.host
URL 的主機部分
本例返回值:www.php230.comorm

4,window.location.port
URL 的端口部分
若是採用默認的80端口(update:即便添加了:80),那麼返回值並非默認的80而是空字符
本例返回值:""

5,window.location.pathname
URL 的路徑部分(就是文件地址)
本例返回值:/fisker/post/0703/window.location.html

6,window.location.search
查詢(參數)部分
除了給動態語言賦值之外,咱們一樣能夠給靜態頁面,並使用javascript來得到相信應的參數值
本例返回值:?ver=1.0&id=6

7,window.location.hash錨點本例返回值:#imhere

相關文章
相關標籤/搜索