js操作url的常用函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js操作url的常用函数相关的知识,希望对你有一定的参考价值。

1. //替换指定传入参数的值,paramName为参数,replaceWith为新值
function replaceParamVal(oUrl,paramName, replaceWith) {
var re = eval(‘/(‘ + paramName + ‘=)([^&]*)/gi‘);
var nUrl = oUrl.replace(re, paramName + ‘=‘ + replaceWith);
return nUrl;
}

 

2.//向URL中添加参数,如果参数存在替换参数的值

function UpdateUrlWithParam(url, key, value) {
var retUrl = url;

if (retUrl.indexOf("?") == -1) {
retUrl += "?" + key + "=" + value;
}
else {
if (retUrl.indexOf("&" + key + "=") == -1) {
if (retUrl.indexOf("?" + key + "=") == -1)
retUrl += "&" + key + "=" + value;
else
retUrl = retUrl.replace(eval(‘/(‘ + key + ‘=)([^&]*)/gi‘), "?" + key + "=" + value);
} else {
retUrl = retUrl.replace(eval(‘/(‘ + key + ‘=)([^&]*)/gi‘), "&" + key + "=" + value);
}
}
return retUrl;
}

3.//得到url里参数的值

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

以上是关于js操作url的常用函数的主要内容,如果未能解决你的问题,请参考以下文章

js常用代码片段(更新中)

js常用代码片段

js 常用代码片段

javascript JS-常用代码片段

js常用函数和常用技巧

总结JS 常用函数