我有这么简单的代码:
(function($) {
$.fn.flyInModal = function() {
alert('fly in?');
};
})(jQuery);
我可以通过做从控制台访问它jQuery.fn.flyInModal()
,但如果我尝试jQuery.flyInModal()
它只会返回:
TypeError: Object function (e,t){return new v.fn.init(e,t,n)} has no method 'flyInModal'
编辑: jQuery.prototype.flyInModal()
也有效。
通读文档我应该能够以这种方式访问它。我错过了什么吗?