Eric Chan ’ s programming lives

抉择比努力奋斗更重要。
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

JQuery 1.3类库index问题修复

Posted on 2011-11-17 11:23  Eric Chan  阅读(213)  评论(0编辑  收藏  举报
  当使用Jquery插件,经常会遇到和自己系统的Jquery类库版本不一致,特别是插件的Jquery版本号偏低,下面是Jquery1.3中index函数存在的bug:
 
$.fn.index=function(type)
{  
  if(typeof(type)=="undefined"){   
      return $(this).prevAll().length;  
    }else {  
      return $(this).prevAll().filter(type).length;  
    }  
};