怎么监听拦截页面a标签的跳转事件,拦截之后做处理在跳转
<a href="a.html"></a> <a href="a.html"></a> <a href="a.html"></a> <a href="a.html"></a> ...
一个页面可能有上百个a标签,我想统一拦截,做一些处理在跳转,可以吗
$('body').on('click','a',function(event){ event.preventDefault(); doYourThings(); })
1.4m articles
1.4m replys
5 comments
57.0k users