我的链接是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帮我解决。
答案 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];
}
});
答案 1 :(得分:0)
<script type="text/javascript">
$(document).ready(function () {
if(window.location.href.indexOf("load") > -1) {
alert("your url contains the name load");
}
});
</script>
这样的事情应该检查你的网址是否包含字符串/单词加载。
希望有所帮助