问答详情
源自:2-1 基本JS、JQ开发结构搭建

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对象了,为什么还要包装一下了?

  });

}

提问者:路北 2016-04-02 17:42

个回答

  • sheshunjiang
    2016-04-12 22:02:11
    已采纳

    此处$('.J_Poster')为一个集合,$(this)表示的是这个集合中的一个,通过each()依次遍历,为每一创建一个Carousel对象