老张博客

阻止a标签href默认跳转事件

发布时间:2017-02-07 11:51:56热度: 7207 ℃评论数:


<a href="####"></a>


<a href="javascript:void(0)"></a>


<a href="javascript:void(null)"></a>


<a href="#" onclick="return false"></a>

$('.stop').click(function(event){ 

  event.preventDefault(); //取消默认的行为

       event.stopPropagation(); //阻止时间冒泡

});

手机扫码访问