2013-04-12 110 views
0

我能找到孩子,但不能清除其母公司,這是TD排找到孩子,並使用jquery刪除其父母?

<tr><td><input type="checkbox"></td><td>Test Information</td></tr> 

$(rowHtml).find('input').parent().remove(); 

我想下面的輸出:

<tr><td>Test Information</td></tr> 
+0

輸出什麼你得到什麼瀏覽器?在Firefox中我看起來很好。 – Dennis

+0

我使用的是火狐 –

回答

0

試試這個:

$(rowHtml).closest('tr').find('td:first').find('input').remove(); 

我已在Jsfiddle添加了此代碼檢查此:http://jsfiddle.net/4E5zP/1/

+0

無法啓動它... –

+0

檢查此我已添加代碼在Jsfiddle中:http://jsfiddle.net/4E5zP/2/ –

+0

你試過嗎? –

0

請務必關閉你的表達

$(rowHtml).click(function() { $(this).parent().remove();});

0

我只是增加了一個類名來輸入元素的父元素,將其取下

   <tr><td class="inputTD"><input type="checkbox"></td><td>Test Information</td></tr> 

        $(rowHTML).find(".inputTD").remove().end();