Skip to content

Instantly share code, notes, and snippets.

@megatontech
Created August 2, 2019 03:37
Show Gist options
  • Save megatontech/0562b3e6edcb6906809d7b5ed85742b7 to your computer and use it in GitHub Desktop.
Save megatontech/0562b3e6edcb6906809d7b5ed85742b7 to your computer and use it in GitHub Desktop.
替换url中的参数
var replaceParamVal = function (paramName, replaceWith) {
var oUrl = this.location.href.toString();
var re = eval('/(' + paramName + '=)([^&]*)/gi');
var nUrl = oUrl.replace(re, paramName + '=' + replaceWith);
this.location = nUrl;
window.location.href = nUrl
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment