jquery-nextUntil

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery-nextUntil相关的知识,希望对你有一定的参考价值。

Then, your code should look like this ...

$(document).ready(function() {
$("dt > a").click(function(){
$(this).parent().nextUntil('dt').toggle();
return false;
});
});
  1. /******** next until > ****************/
  2. $.fn.nextUntil = function(expr) {
  3. var match = [];
  4.  
  5. // We need to figure out which elements to push onto the array
  6. this.each(function(){
  7. // Traverse through the sibling nodes
  8. for( var i = this.nextSibling; i; i = i.nextSibling ) {
  9. // Make sure that we're only dealing with elements
  10. if ( i.nodeType != 1 ) continue;
  11.  
  12. // If we find a match then we need to stop
  13. if ( jQuery.filter( expr, [i] ).r.length ) break;
  14.  
  15. // Otherwise, add it on to the stack
  16. match.push( i );
  17. }
  18. });
  19.  
  20. return this.pushStack( match, arguments );
  21. };
  22.  
  23. /******** < next until ****************/

以上是关于jquery-nextUntil的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?

VSCode自定义代码片段——.vue文件的模板

VSCode自定义代码片段6——CSS选择器

VSCode自定义代码片段——声明函数