滑动分页
nextAll
用于选择指定元素之后的所有元素。我正在尝试自定义
NeXALL
.
我想申请
NeXALL
对于在这个分区之后和另一个分区之前的所有项目。
-<div></div>
-<article>
-<article>
-<div></div>
-<article></article>
-<article></article>
-<div></div>
-<article></article>
-<article></article>
但下面的代码会影响所有项目元素。在这里,我试过
nextUntill
同样,但发现它被用来破坏同一种元素。
$(document).on('change', '.fee_tm', function() {
if(this.checked) {
$(this).parents('div').nextAll('article').fadeIn('slow');
}
else{
$(this).parents('div').nextAll('article').fadeOut('slow');
}
});
div{
float:left;
width:100%;
}
article{
display:none;
width:100%;
}
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body>
<div>
<input type='checkbox' class='fee_tm' />JAN
</div>
<article>
one
</article>
<article>
Two
</article>
<div>
<input type='checkbox' class='fee_tm' />FEB
</div>
<article>
one
</article>
<article>
Two
</article>
<div>
<input type='checkbox' class='fee_tm' />MAR
</div>
<article>
one
</article>
<article>
Two
</article>
</body>
</html>