我正在使用 jQuery 1.9.1,我需要对动态添加的 td 执行操作。我尝试使用 jQyuery.on 函数,但没有调用我的代码。请帮忙!这是我的代码
HTML
<div>First Name:
<input type="text" name="txtFName" id="txtFName" />
<br/>Last Name:
<input type="text" name="txtLName" id="txtLName" />
<br/>
<input type="button" value="Add User" id="btnAdd" />
</div>
<br/>
<div>Users
<table id="tblusers">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th></th>
</tr>
</thead>
<tbody id="tbUsers"></tbody>
</table>
<br/>
<input type="button" value="Save Users" />
</div>
Javascript
$(document).ready(function () {
$('#btnAdd').click(function () {
var content = "";
var fName = $('#txtFName').val();
var lName = $('#txtLName').val(); ;
content = "<tr><td>" + fName + "</td><td>" + lName + "</td><td class=\"clremove\">Delete</td></tr>";
$('#tbUsers').append(content);
});
$('.clremove').on('click', function () {
$('#tbUsers tr').remove($(this).closest('tr'));
});
});
这是我的提琴手