91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

location.search如何獲取URL參數

小樊
101
2024-07-01 12:03:39
欄目: 編程語言

在JavaScript中,可以使用location.search來獲取URL中的查詢參數。location.search返回URL中問號后面的部分,即包含查詢參數的部分。

例如,如果URL是https://example.com/?param1=value1&param2=value2,那么location.search將返回"?param1=value1&param2=value2"。

要獲取具體的參數的值,可以使用以下代碼:

// 獲取URL參數
function getParameterByName(name) {
    name = name.replace(/[\[\]]/g, "\\$&");
    var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
        results = regex.exec(location.search);
    if (!results) return null;
    if (!results[2]) return '';
    return decodeURIComponent(results[2].replace(/\+/g, " "));
}

// 使用方法
var param1 = getParameterByName('param1');
var param2 = getParameterByName('param2');

console.log(param1); // 輸出"value1"
console.log(param2); // 輸出"value2"

這段代碼定義了一個函數getParameterByName,它接受一個參數name,并返回該參數的值。可以通過調用這個函數來獲取特定參數的值。

0
西青区| 永德县| 剑河县| 望城县| 定州市| 余干县| 平陆县| 汝城县| 吴堡县| 濮阳县| 漾濞| 灵宝市| 永仁县| 凉城县| 旌德县| 沅江市| 洞口县| 江口县| 天峨县| 临桂县| 冕宁县| 新津县| 大悟县| 徐州市| 嘉荫县| 万荣县| 武定县| 溆浦县| 东山县| 门头沟区| 肃北| 海原县| 横峰县| 故城县| 久治县| 开化县| 元阳县| 宝丰县| 青铜峡市| 江西省| 福泉市|