用js获取到网址后,去掉其中某个参数,怎么做呢
比如我的网址:http://www.abc.com/index.php&m=index&a=show&p=1
现在我要去掉p=1这个参数,这就需要使用到正则表达式。
代码如下:
var myUrl = location.href.replace(/&p=[0-9]{1,20}/, ''); alert(myUrl);
这个意思就是去除&p=,数字0到9,位数范围:1位到20位数字。
这样就可以了。
用js获取到网址后,去掉其中某个参数,怎么做呢
比如我的网址:http://www.abc.com/index.php&m=index&a=show&p=1
现在我要去掉p=1这个参数,这就需要使用到正则表达式。
代码如下:
var myUrl = location.href.replace(/&p=[0-9]{1,20}/, ''); alert(myUrl);
这个意思就是去除&p=,数字0到9,位数范围:1位到20位数字。
这样就可以了。
You can follow any responses to this entry through the RSS 2.0 Both comments and pings are currently closed.