jQuery查找li元素直到,如果有nextUntil元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery查找li元素直到,如果有nextUntil元素相关的知识,希望对你有一定的参考价值。
Catches click, if element has nextUntil elements, triggers a slideDown of child elements and returns false (to stop the anchor), if there are no nextUntil elements, does nothing and allows the click through (the anchor works).
$("li.par_cat").click(function() { var el_count = $(this).nextUntil("li.par_cat").size(); if(el_count == 0){ // I'll add something here later. }else{ $(this).nextUntil("li.par_cat").each(function() { $(this).slideToggle("slow"); }); return false; } });
以上是关于jQuery查找li元素直到,如果有nextUntil元素的主要内容,如果未能解决你的问题,请参考以下文章
[ jquery 过滤器 prevUntil([exp|ele][,fil]) ] 此方法用于在选择器的基础之上搜索查找当前元素之前所有的同辈元素,直到遇到匹配的那个元素为止