为什么在each和for循环中用_this代替$(this)
item.each(function(){
//这里用_this代替$(this)有什么好处么
var _this = $(this);
var itemTop = _this.offset().top;
if(top > itemTop-150){
currentId = "#" + _this.attr('id');
}else{
return false;
}
});
item.each(function(){
//这里用_this代替$(this)有什么好处么
var _this = $(this);
var itemTop = _this.offset().top;
if(top > itemTop-150){
currentId = "#" + _this.attr('id');
}else{
return false;
}
});
2017-10-21
举报