首页 > 代码库 > JQ插件
JQ插件
一直不知道如何写插件,现在因为工作的需求,必须要了解到更多。于是了解了关于插件的一些知识。
总的来讲,插件就是一种程序写法,是为了更好的扩展。
Query插件的开发包括两种:
1、类级别的插件开发
1.1 添加一个新的全局函数
添加一个全局函数,我们只需如下定义:
jQuery.foo = function() { alert(‘This is a test. This is only a test.‘);};
1.2 增加多个全局函数
jQuery.foo = function() { alert(‘This is a test. This is only a test.‘);};jQuery.bar = function(param) { alert(‘This function takes a parameter, which is "‘ + param + ‘".‘);}; //调用时和一个函数的一样的:jQuery.foo();jQuery.bar();或者$.foo();$.bar(‘bar‘);//也可以这样。var aa={};aa.foo = function() { alert(‘This is a test. This is only a test.‘);};aa.bar = function(param) { alert(‘This function takes a parameter, which is "‘ + param + ‘".‘);}; aa.foo();
1.3 使用jQuery.extend(object);
jQuery.extend({ foo: function() { alert(‘This is a test. This is only a test.‘); }, bar: function(param) { alert(‘This function takes a parameter, which is "‘ + param +‘".‘); } });
1.4 使用命名空间
jQuery.myPlugin = { foo:function() { alert(‘This is a test. This is only a test.‘); }, bar:function(param) { alert(‘This function takes a parameter, which is "‘ + param + ‘".‘); } };//采用命名空间的函数仍然是全局函数,调用时采用的方法:$.myPlugin.foo(); $.myPlugin.bar(‘baz‘);
2、对象级别的插件开发
对象级别的插件开发需要如下的两种形式:
形式1:
(function($){ $.fn.extend({ pluginName:function(opt,callback){ // Our plugin implementation code goes here. } }) })(jQuery);
形式2:
(function($) { $.fn.pluginName = function() { // Our plugin implementation code goes here. }; })(jQuery);
暂时理解这些,后续再补上。
JQ插件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。