jQuery $.fn 的用法



初始化方法

1
2
3
4
5
6
7
8
9
10
(function($) {
$.fn.upload = function(options) {
var opts = $.extend({
isShow: false
}, options);
console.log(opts);

return $(this)
}
})(jQuery);

使用

1
2
3
4
5
$("#add").upload({
isShow: true
})

// {"isShow": true}
03-17 04:06