我正在使用jQuery将DOM添加到带有类sec_sch
的现有空表中,如下所示:
details += "<tr>"+
"<td class=\"use\">" + this.name + "</td>" +
"<td>" + this.start_year + "</td>" +
"<td>" + this.end_year + "</td>" +
"<td>" + this.qualification + "</td>" +
"<td>" + "<button class=\"rmv\">-</button>" + "</td>" +
"</tr>";
$(".sec_sch tbody").append(details);
它加载正常,但我似乎无法使用此类代码操纵同一JS文件中的button.rmv
。
$('.rmv').click(function(e) {
console.log(this);
e.preventDefault();
alert('hi');
}); // end of remove secondary school
请知道为什么?