<div class="J_poster poster-main" data-setting='{
"width":1000,
"height":270,
"posterWidth":640,
"posterHeight":270,
"scale":0.9,
"speed":500,
"verticalAlign":"middle"
}'>
;(function($){
var Carousel=function(poster)
{
//alert(poster);
console.log(poster.attr("data-setting"));
}
Carousel.prototype={};
Carousel.init=function(posters){
var th=this;
posters.each(function(){
new Carousel($("this"));
})
};
window['Carousel']=Carousel;
})(jQuery)
new Carousel($("this"))这个是不是变成这样new Carousel($(this))
还有你的posters.each没有打分号
知道错哪里了怎么删TT