怎么用JS获取页面URL中某一段字符的值
发布网友
发布时间:2022-05-11 23:16
我来回答
共1个回答
热心网友
时间:2023-10-24 22:41
获取查询字符串的上的指定值:
function getParam(key, strURL) {
strURL = strURL || window.location.search;
return new RegExp("(^|\\?|&)" + key + "=([^&]*)(\\s|&|$)", "i").test(strURL) ?
decodeURIComponent(RegExp.$2.replace(/\+/g, " ")) : "";
}
// 调用
getParam('key', '链接');