码迷,mamicode.com
首页 > 其他好文 > 详细

zepto扩展prevAll 与nextAll 方法

时间:2016-09-19 14:33:10      阅读:383      评论:0      收藏:0      [点我收藏+]

标签:

$.fn.prevAll = function(selector){
 var prevEls = [];
 var el = this[0];
 if(!el) return $([]);
 while (el.previousElementSibling) {
        var prev = el.previousElementSibling;
        if (selector) {
          if($(prev).is(selector)) prevEls.push(prev);
        }
        else prevEls.push(prev);
        el = prev;
      }
      return $(prevEls);
};

$.fn.nextAll = function (selector) {
      var nextEls = [];
      var el = this[0];
      if (!el) return $([]);
      while (el.nextElementSibling) {
        var next = el.nextElementSibling;
        if (selector) {
          if($(next).is(selector)) nextEls.push(next);
        }
        else nextEls.push(next);
        el = next;
      }
      return $(nextEls);
    };

  

zepto扩展prevAll 与nextAll 方法

标签:

原文地址:http://www.cnblogs.com/limingziqiang/p/5885039.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!