能詳解一下這個嗎?蟹蟹
;(function($){
var Carousel=function(poster){
alert(poster);
};
Carousel.prototype={
};
Carousel.init=function(posters){
var _this_ = this;
posters.each(function(index,ele){
new _this_(ele);
})
};
window["Carousel"]=Carousel;
})(jQuery);這些每一句話都是啥意思?
這裏到底是jq的語法還是js的語法?
非常感謝!