我正在尝试自学 jQuery,目前正在处理点击事件。据我了解,基于 id 触发点击事件的语法是
$("#IDname").click(function(){ //stuff goes here})
当我尝试这个时,点击事件不会触发。但是,当我将“#IDname”更改为使用“this”对象时,单击事件 DID 会触发。我不认为我想基于“this”对象触发,我仍在使用代码让处理程序以我期望的方式触发(或者直到我发现我看错了问题)。
我的问题是为什么事件会以“this”而不是 ID 触发。请参阅下面的示例代码:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Demo</title>
<style>
.heading {
font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
}
</style>
</head>
<body>
<script src="jquery.js"></script>
<script>
$( document ).ready(function() {
<!-- Does not fire the click event -->
$( "#shopping_list" ).click(function(event) {
$("#shopping_list").append("<tr>");
$("#shopping_list").append("<td>Doe</td>");
$("#shopping_list").append("<td>Re</td>");
$("#shopping_list").append("<td>Mi</td>");
$("#shopping_list").append("</tr>");
})
<!-- Works as expected...this adds a table row when the 'Shopping List' text is clicked -->
$( this ).click(function(event) {
$("#shopping_list").append("<tr>");
$("#shopping_list").append("<td>1</td>");
$("#shopping_list").append("<td>2</td>");
$("#shopping_list").append("<td>3</td>");
$("#shopping_list").append("</tr>");
})
});
</script>
</body>
<div class="heading"><h2>Shopping List</h2>
<div class="shopping_list">
<table>
<tbody>
<form>
<div id="shopping_list"></div>
</form>
</tbody>
</table>
</div>
</div>
</html>