jQuery 查找 value = x 的元素
我需要删除具有 value="123"
的元素。我知道所有具有不同值的元素都位于 #attached_docs
中,但我不知道如何选择具有 value="123"
的元素。
$('#attached_docs').find ... .remove();
你能帮助我吗?
I need to remove element that have value="123"
. I know that all elements with different values are located in #attached_docs
, but I don't know how to select element with value="123"
.
$('#attached_docs').find ... .remove();
Can you help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
如果使用
value
属性在页面源中硬编码该值,那么您可以或
演示 http://jsfiddle.net/gaby/RcwXh/2/
If the value is hardcoded in the source of the page using the
value
attribute then you canor
demo http://jsfiddle.net/gaby/RcwXh/2/
值恰好等于 123:
完整参考: http://api.jquery.com/category/selectors/< /a>
Value exactly equal to 123:
Full reference: http://api.jquery.com/category/selectors/
使用以下选择器。
Use the following selector.
以下对我有用:
The following worked for me:
它应该满足你的需要
但是,您不能重复 id!记住它
it should do your need
however, you cannot duplicate id! remember it