如何使用jQuery从表中删除行?
使用事件委托来包含按钮,用于使用jQuery在网页上添加新行和删除表行。
首先,设置删除按钮:
<button type="button" class="deletebtn" title="Remove row">X</button>
要在单击按钮时触发事件,请使用jQueryon()方法:
$(document).on('click', 'button.deletebtn', function () {
$(this).closest('tr').remove();
return false;
});以下是使用jQuery从表中删除一行的完整代码:
示例
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
var x = 1;
$("#newbtn").click(function () {
$("table tr:first").clone().find("input").each(function () {
$(this).val('').attr({
'id': function (_, id) {
return id + x
},
'name': function (_, name) {
return name + x
},
'value': ''
});
}).end().appendTo("table");
x++;
});
$(document).on('click', 'button.deletebtn', function () {
$(this).closest('tr').remove();
return false;
});
});
</script>
</head>
<body>
<table>
<tr>
<td>
<button type="button" class="deletebtn" title="Remove row">X</button>
</td>
<td>
<input type="text" id="txtTitle" name="txtTitle">
</td>
<td>
<input type="text" id="txtLink" name="txtLink">
</td>
</tr>
</table>
<button id="newbtn">Add new Row</button>
</body>
</html>