我想在内部调用removeSomething()(请参见第9行):

JS代码是:

    (function($){
      $.fn.extend({
        Engine: function(options) {
          var defaults = {
           ...
          };
          var options = $.extend(defaults, options);

          removeSomething();

          //-----------------------------------------------------------------------
          //Public Functions ------------------------------------------------------
          //-----------------------------------------------------------------------

          this.removeSomething = function() {
            ...
          };
        }
      });
   })(jQuery);


但是,如果我调用removeSomething控制台输出,指出removeSomething不是一个函数,那么我该如何调用该函数?该功能应在内部和外部可用。

感谢帮助!

最佳答案

在使用var或其他= function() {...语法进行声明时,在使用该函数之前需要先对其进行定义,并在定义该函数的情况下对其进行调用,在这种情况下:

this.removeSomething = function() {
  ...
};
//*then*
this.removeSomething();

10-07 14:34