我能够找到孩子但无法删除其父母,即 td 行
<tr><td><input type="checkbox"></td><td>Test Information</td></tr>
$(rowHtml).find('input').parent().remove();
我想要以下输出:
<tr><td>Test Information</td></tr>
我能够找到孩子但无法删除其父母,即 td 行
<tr><td><input type="checkbox"></td><td>Test Information</td></tr>
$(rowHtml).find('input').parent().remove();
我想要以下输出:
<tr><td>Test Information</td></tr>
确保你关闭你的表达
$(rowHtml).click(function() { $(this).parent().remove();});
尝试这个:
$(rowHtml).closest('tr').find('td:first').find('input').remove();
我在 Jsfiddle 中添加了这个代码检查这个:http: //jsfiddle.net/4E5zP/1/
我刚刚向输入元素的父级添加了一个类名并将其删除
<tr><td class="inputTD"><input type="checkbox"></td><td>Test Information</td></tr>
$(rowHTML).find(".inputTD").remove().end();