Answers:
如果使用value
属性将该值硬编码在页面的源中,则可以
$('#attached_docs :input[value="123"]').remove();
如果要将目标值
方式123
设置为(由用户或以编程设置)元素,则使用EDIT 两种方法都可以。
要么
$('#attached_docs :input').filter(function(){return this.value=='123'}).remove();
filter
和内部返回的第二个版本array_var.includes(this.value)
$('#attached_docs [value="123"]').find ... .remove();
它应该满足您的需要,但是您不能重复ID!记住它