小编典典

如何创建一个 jQuery 函数(一个新的 jQuery 方法或插件)?

all

我知道在 JavaScript 中的语法如下:

function myfunction(param){
  //some code
}

有没有办法在 jQuery 中声明一个可以添加到元素的函数?例如:

$('#my_div').myfunction()

阅读 65

收藏
2022-06-15

共1个答案

小编典典

文档

(function( $ ){
   $.fn.myfunction = function() {
      alert('hello world');
      return this;
   }; 
})( jQuery );

然后你做

$('#my_div').myfunction();
2022-06-15