<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("a").click(function (event) {
event.preventDefault();
alert('disabled');
});
});
</script>
</head>
<body>
<a href="/">Go to dotnetheaven.com </a>
</body>
</html>
这里(http://api.jquery.com/event.preventDefault/)表示:如果调用此方法,则不会触发事件的默认动作。
问题:
对于上面的代码,事件意味着'点击'?“默认操作”是打开 URL?我理解正确吗?因为我想知道为什么 alert 之后仍然出现event.preventDefault()
。