关于window.location可以获取的信息
window.location方法后還還可以帶href,search等參數,下面我們來看看獲取url各項參數的辦法。
URL即:統一資源定位符 (Uniform Resource Locator, URL)
完整的URL由這幾個部分構成:
scheme://host:port/path?query#fragment
scheme:通信協議
常用的http,ftp,maito等
http://localhost/test/test.htm?id=1
代碼如下 復制代碼
<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>
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
代碼如下 復制代碼
http://www.php230.com :80/fisker/post/0703/window.location.html?ver=1.0&id=6#imhere
我們可以用javascript獲得其中的各個部分
1, window.location.href
整個URl字符串(在瀏覽器中就是完整的地址欄)
本例返回值:
代碼如下 復制代碼
http://www.php230.com :80/fisker/post/0703/window.location.html?ver=1.0&id=6#imhere
2,window.location.protocol
URL 的協議部分
本例返回值:http:
3,window.location.host
URL 的主機部分
本例返回值:www.php230.com
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
轉載于:https://my.oschina.net/liangzhenghui/blog/504454
總結
以上是生活随笔為你收集整理的关于window.location可以获取的信息的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 半路出家学php可以吗,PHP半路出家(
- 下一篇: usb hub区分端口_树莓派上 USB