var _this_ = this; posters.each(function () { new _this_($(this)); });
为什么不能这样
posters.each(function () { new Carousel($(this)); });
谢谢回答的人
这样耦合程度更低吧。
你的方法是可以的