Carousel.init() 传入时是jquery对象 为什么在each中还要将this包装成$(this)?
Carousel.init($('.J_Poster')) ; 这里传入的是jquery对象啊?
Carousel.init = function(posters){
var _this_ = this;
posters.each(function(i, elem){
new _this_($(this)); // 这里的this按理说应该已经是上面的jquery对象了,为什么还要包装一下了?
});
}