本文介绍了如何获取不以特定名称开头的元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
$('[name^="field_"][type="checkbox"]');
上方给出名称以field_
开头的复选框的列表.
Above gives the list of checkboxes with name that start with field_
.
如何获取所有不以field_
开头的复选框?
How can I get all the checkboxes that does not start with field_
感谢您的帮助.
推荐答案
$('[type="checkbox"]:not([name^="field_"])');
这篇关于如何获取不以特定名称开头的元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!