我想在另一个函数中调用checkWidth()
函数。不幸的是,我不能真正做到这一点。在removeTag()
函数中,checkWidth()
函数未运行。
(function($) {
$.fn.myplugin = function(elements) {
this.checkWidth = function() {
alert("test");
};
this.removeTag = function() {
$(document).on("click", function() {
this.checkWidth();
});
};
this.initialize = function() {
this.removeTag();
return this;
};
return this.initialize();
};
}(jQuery));