问答详情
源自:2-3 默认配置参数设置及扩展

知道错哪里了~~·为什么我的data-setting console不出来

<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)


提问者:洛洛 2017-09-08 13:55

个回答

  • 慕仔7231597
    2017-09-21 17:12:32

    new Carousel($("this"))这个是不是变成这样new Carousel($(this))

    还有你的posters.each没有打分号

  • 洛洛
    2017-09-08 14:08:15

    知道错哪里了怎么删TT