我把它写在一个单独的 .js 文件中并附加到 HTML 中:
(function ($) {
$.fn.test = function(){
this.remove();
return this;
};
}(JQuery));
然后在我的 html 上的另一个 .js 文件上使用它:
$("#table").test();
但是出现了这个错误:
Uncaught TypeError: Object [object Object] has no method 'test'
我不知道有什么问题!