好的,所以我有这个结构
<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()
有任何想法吗