jquery 怎么改变a链接的href而不自动跳转?
发布网友
发布时间:2022-04-23 04:54
我来回答
共3个回答
懂视网
时间:2022-05-15 16:27
本文主要为大家带来一篇jQuery 循环遍历改变a标签的href(实例讲解)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧,希望能帮助到大家。
把info类下面所有的a标签链接后天加"#article"。
热心网友
时间:2022-05-15 13:35
这个直接javascript就可以实现的:
<a href="#" id="aid">百度</a>
<button id="btn">改变herf</button>
<script>
document.getElementById("btn").addEventListener("click",change);
function change()
{
document.getElementById("aid").href="http://www.baidu.com"
}
</script>
以上代码即可实现。
热心网友
时间:2022-05-15 14:53
var $can_jump = false;
$('.get_more').click(function(){
$(this).attr('href','./category_'+cid);
$can_jump = true;
return !$can_jump;
});