Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只是我想从表格中删除一行
我用了这段代码
$('#f02_0000').remove();
但无论我是否要删除整行,它都会从该行中删除一列。
请帮忙!
试试这个来删除在该行中具有 attr 的父id='f02_0000'行:
id='f02_0000'
$('#f02_0000').closest("tr").remove();
通常我们在该行中有一个输入元素,其中包含某个类class="deleteRow",您可以使用以下内容在浏览器中删除该特定行 onClick 该按钮。
class="deleteRow"
$( "input.deleteRow" ).click(function(event) { $(this).closest("tr").remove(); });