使用JQuery样板的Javascript范围界定问题(Javascript scoping Iss

2019-10-19 04:34发布

我使用jQuery样板写我的第一个jQuery插件 - 一个负责任的旋转木马。 我使用的另一个插件(SSM - http://www.simplestatemanager.com/ )为每个设备视图中创建的状态。 因此,移动设备上的泛函将运行在平板电脑上functionB和桌面functionC等。

对于由SSM创建的每个状态可添加相应的OnEnter回调函数和我已经添加3个合适的功能发生这种情况时才能运行。 正如你可以从下面的功能代码onEnterDesktop上桌面设备上运行看。 我则试图在此称为createCarousel内运行其他功能(),但我得到“createCarousel没有定义”的错误。

我相信这是因为的范围界定问题,浏览器无法从onEnterDesktop函数中找到createCarousel。 我怎样才能解决这个问题?

任何帮助将是巨大的。 下面是我的插件的代码:

;(function ( $, window, document, undefined ) {

// Create the defaults once
var pluginName = "dcResponsiveCarousel",
    defaults = {
        propertyName: "value"
    };

function Plugin( element, options ) {
    this.element = element;
    this.$element = $(element);
    this.options = $.extend( {}, defaults, options) ;
    this._defaults = defaults;
    this._name = pluginName;
    this.init();
}

Plugin.prototype = {

    init: function() {

        ssm.addStates([
            {
                id: 'mobile',
                maxWidth: 767,
                onEnter: this.onEnterMobile
            },            
            {
                id: 'tablet',
                maxWidth: 991,
                minWidth: 768,
                onEnter: this.onEnterTablet
            },
            {
                id: 'desktop',
                minWidth: 992,
                onEnter: this.onEnterDesktop
            }
        ]);
        ssm.ready();
    },

    onEnterMobile: function (){
        console.log("You've entered mobile screen dimension territory");
        var itemsPerPage = 1;
        console.log(itemsPerPage); 
    },

    onEnterTablet: function (){
        console.log("You've entered tablet screen dimension territory");
        var itemsPerPage = 2;
        console.log(itemsPerPage);         
    },

    onEnterDesktop: function (){
         console.log("You've entered desktop screen dimension territory");
         var itemsPerPage = 3;
         createCarousel();
    },

    createCarousel: function (){
        var $carouselItems = this.$element.children(".item"),
            $carouselItemsLength = $carouselItems.length,
            $carouselItemsWidth = 0;

            for (var i = 0; i < $carouselItemsLength; i++) {
                $carouselItemsWidth = $carouselItemsWidth + $carouselItems.eq(i).outerWidth();
            };

            console.log($carouselItemsWidth);
            this.$element
    }
};

$.fn[pluginName] = function ( options ) {
    return this.each(function () {
        if (!$.data(this, "plugin_" + pluginName)) {
            $.data(this, "plugin_" + pluginName,
            new Plugin( this, options ));
        }
    });
};

})( jQuery, window, document );

Answer 1:

它是一个对象字面所以createCarousel没有定义, Plugin.prototype.createCarousel是,或者在范围你在, this.createCarousel();

onEnterDesktop: function (){
     console.log("You've entered desktop screen dimension territory");
     var itemsPerPage = 3;
     Plugin.prototype.createCarousel();
},


文章来源: Javascript scoping Issue using JQuery Boilerplate