为了账号安全,请及时绑定邮箱和手机立即绑定

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

  });

}

正在回答

1 回答

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

0 回复 有任何疑惑可以回复我~
#1

路北 提问者

非常感谢!
2016-04-13 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

Carousel.init() 传入时是jquery对象 为什么在each中还要将this包装成$(this)?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信