我是一个菜鸟,对 event.preventDefault 的 jQuery API 文档中的一些示例代码感到困惑:
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<a href="http://jquery.com">default click action is prevented</a>
<div id="log"></div>
<script>
$("a").click(function(event) {
event.preventDefault();
$('<div/>')
.append('default ' + event.type + ' prevented')
.appendTo('#log');
});
</script>
</body>
</html>
为什么这里同时使用 append() 和 appendTo()?一个应该不够吗?为什么使用 self-closed$('<div/>')
而不是 simple $('<div>')
?