当使用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;
}
};
return $(this).prevAll().length;
}else {
return $(this).prevAll().filter(type).length;
}
};