首頁 > web前端 > js教程 > 一個非常全面的javascript URL解析函數和分段URL解析方法_javascript技巧

一個非常全面的javascript URL解析函數和分段URL解析方法_javascript技巧

WBOY
發布: 2016-05-16 16:52:39
原創
1200 人瀏覽過

一、URL解析函數

複製程式碼程式碼如下:

程式碼如下:


程式碼如下:

碼🎜>; 
/**
*@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.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
 return { 
 來源:url, 
 協定:a.protocol.replace(':',''), 
 主機:a.hostname, 
 連接埠:🎜> 主機:a.hostname, 
 連接埠:a.port, 🎜> 查詢:a.search, 
 參數:(function(){ 
     var ret = {}, 
      &'), 
         len = seg.length, i = 0, s; 
     for (;i         if (!seg[i]) { continue } 
s = seg[i].split('='); 
         ret[s[0]] = s[1]; 
     } 
 檔案: (a.pathname.match(//([^/?#] )$/i) || [,''])[1], 
哈希: a.hash.replace('#' ,''), 
 路徑:a.pathname.replace(/^([^/])/,'/$1'), 
 相對:(a.href.match(/tps?:// [^/] (. )/) || [,''])[1], 
 段:a.pathname.replace(/^//,'').split('/') 
}; 
}   

//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');  警報(myURL.path); 

警報(myURL.params.m) ;  警報(myURL.params.pid);  腳本>




複製程式碼


程式碼如下:


scheme = 通訊協定(常用的http,ftp,maito等)
host =host主機(網域名稱或IP)port = 連接埠號碼

path = 路徑
query = 查詢(任選,用於給動態網頁(如使用CGI、ISAPI、PHP/JSP/ASP/ASP.NET等)技術製作的網頁)提交參數,可以有多個參數,用”&”符號隔開,每個參數的名稱和值用”=”符號隔開。 )

fragment = 訊息片段(字串,用於指定網路資源中的片段。例如一個網頁有多個名詞解釋,可使用片段直接定位到某個名詞解釋。(也稱為點。))



對於這樣一個URL

http://www.jb51.net: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 的主機部分

本例傳回值:www.jb51.net


4,window.location.port
URL 的連接埠部分

如果採用預設的80埠(更新:即使新增了:80),那麼回傳值不是預設的80而是空字元

本例傳回值:””

5,window.location.pathname
URL的路徑部分(就是檔案位址)

本例傳回值:/seo/


6,window.location.search
查詢(參數)部分

除了給動態語言賦值之外,我們也可以給靜態頁面,並使用javascript來獲得應相信的參數值本例回傳值:?ver=1.0&id=6 7,window.location.hash某點本例傳回值:#imhere
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板