js獲取url傳遞參數(shù),js獲取url?號后面的參數(shù)

<Script language="javascript">
function GetRequest() {
var url = location.search; //獲取url中"?"符后的字串
var theRequest = new Object();
if (url.indexOf("?") != -1) {
var str = url.substr(1);
strs = str.split("&");
for(var i = 0; i < strs.length; i ++) {
theRequest[strs[i].split("=")[0]]=unescape(strs[i].split("=")[1]);
}
}
return theRequest;
}
</script>
其他參數(shù)獲取介紹:
//設(shè)置或獲取對象指定的文件名或路徑。
alert(window.location.pathname);

//設(shè)置或獲取整個 URL 為字符串。
alert(window.location.href);

//設(shè)置或獲取與 URL 關(guān)聯(lián)的端口號碼。
alert(window.location.port);

//設(shè)置或獲取 URL 的協(xié)議部分。
alert(window.location.protocol);

//設(shè)置或獲取 href 屬性中在井號“#”后面的分段。
alert(window.location.hash);

//設(shè)置或獲取 location 或 URL 的 hostname 和 port 號碼。
alert(window.location.host);

//設(shè)置或獲取 href 屬性中跟在問號后面的部分。
alert(window.location.search);

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容