jQuery 查找 value = x 的元素

发布于 2024-11-24 10:31:09 字数 212 浏览 0 评论 0原文

我需要删除具有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

白云不回头 2024-12-01 10:31:09

如果使用 value 属性在页面源中硬编码该值,那么您可以

$('#attached_docs :input[value="123"]').remove();

$('#attached_docs :input').filter(function(){return this.value=='123'}).remove();

演示 http://jsfiddle.net/gaby/RcwXh/2/

If the value is hardcoded in the source of the page using the value attribute then you can

$('#attached_docs :input[value="123"]').remove();

or

$('#attached_docs :input').filter(function(){return this.value=='123'}).remove();

demo http://jsfiddle.net/gaby/RcwXh/2/

涙—继续流 2024-12-01 10:31:09

值恰好等于 123:

jQuery("#attached_docs[value='123']")

完整参考: http://api.jquery.com/category/selectors/< /a>

Value exactly equal to 123:

jQuery("#attached_docs[value='123']")

Full reference: http://api.jquery.com/category/selectors/

若相惜即相离 2024-12-01 10:31:09

使用以下选择器。

$('#attached_docs [value=123]').remove();

Use the following selector.

$('#attached_docs [value=123]').remove();
凯凯我们等你回来 2024-12-01 10:31:09

以下对我有用:

$("[id=attached_docs][value=123]")

The following worked for me:

$("[id=attached_docs][value=123]")
简单气质女生网名 2024-12-01 10:31:09
$('#attached_docs [value="123"]').find ... .remove();

它应该满足你的需要
但是,您不能重复 id!记住它

$('#attached_docs [value="123"]').find ... .remove();

it should do your need
however, you cannot duplicate id! remember it

樱花坊 2024-12-01 10:31:09
$(selector).filter(function(){return this.value==yourval}).remove();
$(selector).filter(function(){return this.value==yourval}).remove();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文