一、URL解析函數
復制代碼 代碼如下:
<script>
/**
*@param {string} url 完整的URL地址
*@returns {object} 自定義的對象
*@description 用法示例:var myURL = parseURL('http://abc.com:8080/dir/index.html?id=255&m=hello#top');
myURL.file='index.html'
myURL.hash= 'top'
myURL.host= 'abc.com'
myURL.query= '?id=255&m=hello'
myURL.params= Object = { id: 255, m: hello }
myURL.path= '/dir/index.html'
myURL.segments= Array = ['dir', 'index.html']
myURL.port= '8080'
myURL.protocol= 'http'
myURL.source= 'http://abc.com:8080/dir/index.html?id=255&m=hello#top'
*/
function parseURL(url) {
var a = document.createElement('a');
a.href = url;
return {
source: url,
protocol: a.protocol.replace(':',''),
host: a.hostname,
port: a.port,
query: a.search,
params: (function(){
var ret = {},
seg = a.search.replace(/^/?/,'').split('&'),
len = seg.length, i = 0, s;
for (;i<len;i++) {
if (!seg[i]) { continue; }
s = seg[i].split('=');
ret[s[0]] = s[1];
}
return ret;
})(),
file: (a.pathname.match(///([^//?#]+)$/i) || [,''])[1],
hash: a.hash.replace('#',''),
path: a.pathname.replace(/^([^//])/,'/$1'),
relative: (a.href.match(/tps?:////[^//]+(.+)/) || [,''])[1],
segments: a.pathname.replace(/^///,'').split('http://www.survivalescaperooms.com/')
};
}
//var myURL = parseURL('http://abc.com:8080/dir/index.html?id=255&m=hello#top');
var myURL = parseURL('http://localhost:8080/test/mytest/toLogina.ction?m=123&pid=abc');
alert(myURL.path);
alert(myURL.params.m);
alert(myURL.params.pid);
</script>
二、JS分段URL解析
URL : 統一資源定位符 (Uniform Resource Locator, URL)
完整的URL由這幾個部分構成:scheme://host:port/path?query#fragment
復制代碼 代碼如下:
scheme = 通信協議 (常用的http,ftp,maito等)
host = 主機 (域名或IP)
port = 端口號
path = 路徑
query = 查詢(可選,用于給動態網頁(如使用CGI、ISAPI、PHP/JSP/ASP/ASP.NET等技術制作的網頁)傳遞參數,可有多個參數,用”&”符號隔開,每個參數的名和值用”=”符號隔開。)
fragment = 信息片斷(字符串,用于指定網絡資源中的片斷。例如一個網頁中有多個名詞解釋,可使用fragment直接定位到某一名詞解釋。(也稱為錨點.))
對于這樣一個URL
:80/seo/?ver=1.0&id=6#imhere
我們可以用javascript獲得其中的各個部分
1, window.location.href
整個URl字符串(在瀏覽器中就是完整的地址欄)
2,window.location.protocol
URL 的協議部分
本例返回值:http:
3,window.location.host
URL 的主機部分
本例返回值:
4,window.location.port
URL 的端口部分
如果采用默認的80端口(update:即使添加了:80),那么返回值并不是默認的80而是空字符
本例返回值:”"
5,window.location.pathname
URL 的路徑部分(就是文件地址)
本例返回值:/seo/
6,window.location.search
查詢(參數)部分
除了給動態語言賦值以外,我們同樣可以給靜態頁面,并使用javascript來獲得相信應的參數值
本例返回值:?ver=1.0&id=6
7,window.location.hash
錨點
本例返回值:#imhere
新聞熱點
疑難解答
圖片精選