e.preventDefault()阻止事件默认行为
例如:
$("a").click(function (e) {
alert("默认行为被禁止喽"); e.preventDefault(); });
<a href="http://www.baidu.com">测试</a>