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

我知道JavaScript中的语法如下:

function myfunction(param){

//some code

}

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

$('#my_div').myfunction()

回答:

从文档中:

(function( $ ){

$.fn.myfunction = function() {

alert('hello world');

return this;

};

})( jQuery );

那你做

$('#my_div').myfunction();

以上是 如何创建jQuery函数(新的jQuery方法或插件)? 的全部内容, 来源链接: utcz.com/qa/412448.html

回到顶部