js 正则RegExp对象替换url参数值
作者:互联网
// 替换指定传入参数的值,oUrl为链接,paramName为参数,replaceWith为新值
function replaceParamVal (oUrl, paramName, replaceWith) {
var re = new RegExp('(' + paramName + '=)([^&]*)', 'gi')
var nUrl = oUrl.replace(re, paramName + '=' + replaceWith)
return nUrl
}
标签:oUrl,url,replaceWith,js,re,paramName,var,RegExp 来源: https://www.cnblogs.com/qingheshiguang/p/15429993.html