$("a").on("click",function (e) { doSomething(); }); ... <a href="http://website.com">My Link</a>
将doSomething()总是在“href”之前运行,在每个浏览器中?
解决方法
是的,你的处理程序将始终运行.例如,如果需要,您可以取消默认行为(导航到href url)
$("a").on("click",function (e) { e.preventDefault(); // --> if this handle didn't run first,this wouldn't work doSomething(); });