Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个数组中有一些 Id,我想选择 div 中的所有元素,除了那些在数组中具有相同 Id 的元素。
是否可以使用 jquery 功能来做到这一点,而不必循环数组并比较 Id。
使用:not选择器,并在选择器中加入数组:
:not
$('div :not(#' + array.join(', #') + ')');