我能找到孩子,但不能清除其母公司,這是TD排找到孩子,並使用jquery刪除其父母?
<tr><td><input type="checkbox"></td><td>Test Information</td></tr>
$(rowHtml).find('input').parent().remove();
我想下面的輸出:
<tr><td>Test Information</td></tr>
我能找到孩子,但不能清除其母公司,這是TD排找到孩子,並使用jquery刪除其父母?
<tr><td><input type="checkbox"></td><td>Test Information</td></tr>
$(rowHtml).find('input').parent().remove();
我想下面的輸出:
<tr><td>Test Information</td></tr>
試試這個:
$(rowHtml).closest('tr').find('td:first').find('input').remove();
我已在Jsfiddle添加了此代碼檢查此:http://jsfiddle.net/4E5zP/1/
無法啓動它... –
檢查此我已添加代碼在Jsfiddle中:http://jsfiddle.net/4E5zP/2/ –
你試過嗎? –
請務必關閉你的表達
$(rowHtml).click(function() { $(this).parent().remove();});
我只是增加了一個類名來輸入元素的父元素,將其取下
<tr><td class="inputTD"><input type="checkbox"></td><td>Test Information</td></tr>
$(rowHTML).find(".inputTD").remove().end();
輸出什麼你得到什麼瀏覽器?在Firefox中我看起來很好。 – Dennis
我使用的是火狐 –