How to find elements with 'value=x'?

后端 未结 6 1721
萌比男神i
萌比男神i 2020-12-08 09:14

I need to remove element that have value=\"123\". I know that all elements with different values are located into #attached_docs, but I don\'t know

6条回答
  •  死守一世寂寞
    2020-12-08 09:23

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

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

提交回复
热议问题