2012-05-20 62 views
6

好了,所以我有這樣的結構如何刪除外的div使用jQuery

<div class="field_with_errors"> 
    <input id="count" name="count" size="2" type="text" /> 
    <label class="message" for="count_for">Required</label> 
</div> 

如何刪除外field_with_errors和內部消息,剛剛離開輸入標籤

如果我這樣做

$("#count").closest(".field_with_errors").remove() 

它消除了整個的div

我可以刪除內.message第一,但不知道如何刪除外

$("#count").closest(".field_with_errors").find('.message').remove() 

任何想法

回答