国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

利用a標簽自動解析URL分析網址實例

2019-11-20 14:00:38
字體:
來源:轉載
供稿:網友

對于window.location,我們比較熟悉,它有protocol,hostname,host,port,search,hash,href,pathname等屬性,a標簽也和window.location一樣,也有這樣屬性,這樣可以方便我們分析網址,閑話少說,上代碼。

function parseURL(url) {var a = document.createElement('a');a.href = url;return {source: url,protocol: a.protocol.replace(':',''),host: a.hostname,port: a.port||'80',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('/')};}

測試地址

console.log(parseURL("http://www.w3school.com.cn/jsref/dom_obj_anchor.asp?type=2#id2"));

結果如下

復制代碼 代碼如下:

{
file: "dom_obj_anchor.asp",
hash: "id2",
host: "www.w3school.com.cn",
params: {type: "2"},
path: "/jsref/dom_obj_anchor.asp",
port: "80",
protocol: "http",
query: "?type=2",
relative: "/jsref/dom_obj_anchor.asp?type=2#id2",
segments: [0: "jsref",1: "dom_obj_anchor.asp"],
source: http://www.w3school.com.cn/jsref/dom_obj_anchor.asp?type=2#id2
}

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 大新县| 肥乡县| 石屏县| 衡东县| 徐汇区| 军事| 含山县| 临夏市| 威海市| 琼海市| 福安市| 清流县| 扶余县| 胶州市| 南昌市| 遂宁市| 深圳市| 容城县| 金溪县| 莱芜市| 大新县| 礼泉县| 庆阳市| 栾城县| 吉林市| 定安县| 马龙县| 佛坪县| 澄迈县| 八宿县| 新巴尔虎右旗| 密云县| 望都县| 马关县| 会同县| 琼中| 鞍山市| 常山县| 枞阳县| 莆田市| 井研县|