(函数($){})(JQuery)意味着什么?
(function($) {})(jQuery);第1类:
(function($) {
$.fn.jPluginName = {
},
$.fn.jPluginName.defaults = {
}})(jQuery);第2类:
(function($) {
$.jPluginName = {
}})(jQuery);第3类:
(function($){
//Attach this new method to jQuery
$.fn.extend({
var defaults = {
}
var options = $.extend(defaults, options);
//This is where you write your plugin's name
pluginname: function() {
//Iterate over the current set of matched elements
return this.each(function() {
//code to be inserted here
});
}
}); })(jQuery);喵喔喔
动漫人物
FFIVE
相关分类