獲取瀏覽器地址后面的參數(shù),可支持指定參數(shù)獲取

方法一、正則表達式

function getQueryString(name) { 
        var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); 
        var r = window.location.search.substr(1).match(reg); 
        if (r != null) return unescape(r[2]); 
        return null; 
    } 

方法二、

<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> 

方法三、

/** 
 * 獲取指定的URL參數(shù)值 
 * URL:http://www.quwan.com/index?name=tyler 
 * 參數(shù):paramName URL參數(shù) 
 * 調(diào)用方法:getParam("name") 
 * 返回值:tyler 
 */ 
function getParam(paramName) { 
    paramValue = "", isFound = !1; 
    if (this.location.search.indexOf("?") == 0 && this.location.search.indexOf("=") > 1) { 
        arrSource = unescape(this.location.search).substring(1, this.location.search.length).split("&"), i = 0; 
        while (i < arrSource.length && !isFound) arrSource[i].indexOf("=") > 0 && arrSource[i].split("=")[0].toLowerCase() == paramName.toLowerCase() && (paramValue = arrSource[i].split("=")[1], isFound = !0), i++ 
    } 
    return paramValue == "" && (paramValue = null), paramValue 
} 

其他參數(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)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

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