获取url段并更改分页链接

时间:2014-05-11 09:20:18

标签: jquery jquery-ui jquery-plugins

我的链接是www.xxx.com/key/load

我想检查网址是否包含" load" keword,然后更改分页URL

<a href="www.xxx.com/key?p=xx">2</a>

<a href="www.xxx.com/key/load?p=xx">2</a>

请使用jQuery帮我解决。

2 个答案:

答案 0 :(得分:1)

试试这个,

$('a').each(function(){
   if(this.href && this.href.indexOf('/load') ===-1) {
       s=this.href;
       a=s.split('?');
       this.href=a[0]+'/load?'+a[1];
   }
});

Demo

答案 1 :(得分:0)

<script type="text/javascript">
    $(document).ready(function () {
        if(window.location.href.indexOf("load") > -1) {
            alert("your url contains the name load");
           }
     });
</script>

这样的事情应该检查你的网址是否包含字符串/单词加载。

希望有所帮助