利用jQuery not()方法选取除某个元素外的所有元素
日常的工作中可能会用到,选取处某个或者某些元素外的所有元素。
这时我们可以使用 jQuery 遍历中的 not() 方法来排除某些元素,例如根据元素的 #id ,.class 等排除,代码如下:
$("div.content *").not(".keep");
表示 .content 类的 div 下除 .keep 类以外的所有元素;
另外,注意这里的 * 表示所有元素。
示例:
HTML
<div class="box">
<span>点击按钮删除下面绿色框中所有不是keep类的元素,keep类的元素用红色区分。</span>
<div class="content">
<input type="checkbox" name="item"><span>萝卜</span>
<input type="checkbox" name="item"><span>青菜</span>
<input type="checkbox" name="item" class="keep"><span class="keep">小葱</span>
<input type="checkbox" name="item" class="keep"><span class="keep">豆腐</span>
<input type="checkbox" name="item"><span>土豆</span>
<input type="checkbox" name="item"><span>茄子</span>
<input type="text" value="我也不是keep类的">
<input type="button" value="删除">
</div>
CSS
.box{
width:300px;
height:200px;
padding:10px 20px;
.box>span{
color:#999;
.keep{
color:red;
.content{
width:250px;
height:100px;
margin:10px 0;
border:1px solid green;
input[type='button']{
width:200px;
height:35px;
margin:10px;
border:2px solid #ebbcbe;
}
jQuery
$(function(){
$("input:button").click(function() {
$("div.content *").not(".keep").each(function() { // "*"表示div.content下的所有元素
$(this).remove();
})
补充说明:
*
的用法主要有两种: