jquery插件,最后一句:$.data(this, 'carousel', obj); 是什么意思?
$.fn.carousel = function (options) { return this.each(function () { var obj = Object.create(Carousel); obj.init($(this), options); $.data(this, 'carousel', obj); });};