jQuery 获取除某指定对象外的其他对象 ( :not() 与.not())
时间:2020-10-18 14:20:56|栏目:jquery|点击: 次
jquery获取除某指定对象外的其他对象
.not() 遍历方法 从匹配元素集合中移除元素
:not() 选择器 选取除了指定元素以外的所有元素。
<ul> <li>list item 1</li> <li>list item 2</li> <li id="unwanted">list item 3</li> <li>list item 4</li> <li>list item 5</li> </ul>
获取ul中除 id="unwanted"
的其他所有 li
$('li:not(#unwanted)').css('background', 'red'); $('li').not('#unwanted').css('background', 'red');
总结
栏 目:jquery
下一篇:jquery jqPlot API 中文使用教程(非常强大的图表工具)
本文标题:jQuery 获取除某指定对象外的其他对象 ( :not() 与.not())
本文地址:http://www.codeinn.net/misctech/13444.html