JQuery事件的e參數的方法preventDefault()可以取消對象的默認行為。如下代碼:
. 代碼如下:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript">
$(function () {
$("a").click(function (e) {
alert($(this).text());
e.preventDefault();//取消默認行為,沒有這句話的話,會跳轉到baidu網站上
});
});
</script>
</head>
<body>
<a href="http://www.baidu.com">baidu</a>
</body>
</html>