好的,我有这个结构
<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
$("#count").closest(".field_with_errors").find('.message').remove()
有任何想法吗