$.fn.carousel = function (options) {
    return this.each(function () {
        var obj = Object.create(Carousel);
        obj.init($(this), options);
        $.data(this, 'carousel', obj);
    });
};jquery插件,最后一句:
$.data(this, 'carousel', obj);
这句是用来干嘛的?