Jquery 添加插件

原文:http://www.iteye.com/topic/545971

jQuery插件的开发包括两种:

一种是类级别的插件开发,即给jQuery添加新的全局函数,相当于给jQuery类本身添加方法。jQuery的全局函数就是属于jQuery命名空间的函数,另一种是对象级别的插件开发,即给jQuery对象添加方法。下面就两种函数的开发做详细的说明。

1、类级别的插件开发

类级别的插件开发最直接的理解就是给jQuery类添加类方法,可以理解为添加静态方法。典型的例子就是$.AJAX()这个函数,将函数定义于jQuery的命名空间中。关于类级别的插件开发可以采用如下几种形式进行扩展:

1.1 添加一个新的全局函数

第一种:

1 jQuery.foo = function() {
2 alert(‘This is a test. This is only a test.‘);
3 };

第二种:


1 jQuery.extend({
2 foo: function() {
3 alert(‘This is a test. This is only a test.‘);
4 },
5 bar: function(param) {
6 alert(‘This function takes a parameter, which is "‘ + param +‘".‘);
7 }
8 });

1.2 使用命名空间

虽然在jQuery命名空间中,我们禁止使用了大量的javaScript函数名和变量名。但是仍然不可避免某些函数或变量名将于其他jQuery插件冲突,因此我们习惯将一些方法封装到另一个自定义的命名空间。


 1 jQuery.myPlugin = {
2 foo:function() {
3 alert(‘This is a test. This is only a test.‘);
4 },
5 bar:function(param) {
6 alert(‘This function takes a parameter, which is "‘ + param + ‘".‘);
7 }
8 };
9 //采用命名空间的函数仍然是全局函数,调用时采用的方法:
10 $.myPlugin.foo();
11 $.myPlugin.bar(‘baz‘);

通过这个技巧(使用独立的插件名),我们可以避免命名空间内函数的冲突。

2、对象级别的插件开发

第一种:


1 (function($){
2 $.fn.extend({
3 pluginName:function(opt,callback){
4 // Our plugin implementation code goes here.
5 }
6 })
7 })(jQuery);

第二种:

1 (function($) {
2 $.fn.pluginName = function() {
3 // Our plugin implementation code goes here.
4 };
5 })(jQuery);

上面定义了一个jQuery函数,形参是$,函数定义完成之后,把jQuery这个实参传递进去.立即调用执行。这样的好处是,我们在写jQuery插件时,也可以使用$这个别名,而不会与prototype引起冲突.

2.1
JQuery名称空间下申明一个名字

这是一个单一插件的脚本。如果你的脚本中包含多个插件,或者互逆的插件(例如: $.fn.doSomething() 和
$.fn.undoSomething()),那么你需要声明多个函数名字。但是,通常当我们编写一个插件时,力求仅使用一个名字来包含它的所有内容。我们的示例插件命名为“highlight“

1 $.fn.hilight = function() {
2 // Our plugin implementation code goes here.
3 };

我们的插件通过这样被调用: $(‘#myDiv‘).hilight();

但是如果我们需要分解我们的实现代码为多个函数该怎么办?有很多原因:设计上的需要;这样做更容易或更易读的实现;而且这样更符合面向对象。
这真是一个麻烦事,把功能实现分解成多个函数而不增加多余的命名空间。出于认识到和利用函数是javascript中最基本的类对象,我们可以这样做。就像其他对象一样,函数可以被指定为属性。因此我们已经声明“hilight”为jQuery的属性对象,任何其他的属性或者函数我们需要暴露出来的,都可以在"hilight"
函数中被声明属性。稍后继续。

2.2
接受options参数以控制插件的行为

让我们为我们的插件添加功能指定前景色和背景色的功能。我们也许会让选项像一个options对象传递给插件函数。例如:

Java代码

  1. // plugin definition

  2. $.fn.hilight = function(options) {

  3. var defaults = {

  4. foreground: ‘red‘,

  5. background: ‘yellow‘

  6. };

  7. // Extend our default options with those provided.

  8. var opts = $.extend(defaults, options);

  9. // Our plugin implementation code goes here.

  10. };

  11. 我们的插件可以这样被调用:

  12. $(‘#myDiv‘).hilight({

  13. foreground: ‘blue‘

  14. });

// plugin definition
$.fn.hilight = function(options) {
var defaults = {
foreground: ‘red‘,
background: ‘yellow‘
};
// Extend our default options with those provided.
var opts = $.extend(defaults, options);
// Our plugin implementation code goes here.
};
我们的插件可以这样被调用:
$(‘#myDiv‘).hilight({
foreground: ‘blue‘
});

2.3 暴露插件的默认设置

我们应该对上面代码的一种改进是暴露插件的默认设置。这对于让插件的使用者更容易用较少的代码覆盖和修改插件。接下来我们开始利用函数对象。

Java代码

  1. // plugin definition

  2. $.fn.hilight = function(options) {

  3. // Extend our default options with those provided.

  4. // Note that the first arg to extend is an empty object -

  5. // this is to keep from overriding our "defaults" object.

  6. var opts = $.extend({}, $.fn.hilight.defaults, options);

  7. // Our plugin implementation code goes here.

  8. };

  9. // plugin defaults - added as a property on our plugin function

  10. $.fn.hilight.defaults = {

  11. foreground: ‘red‘,

  12. background: ‘yellow‘

  13. };

  14. 现在使用者可以包含像这样的一行在他们的脚本里:

  15. //这个只需要调用一次,且不一定要在ready块中调用

  16. $.fn.hilight.defaults.foreground = ‘blue‘;

  17. 接下来我们可以像这样使用插件的方法,结果它设置蓝色的前景色:

  18. $(‘#myDiv‘).hilight();

// plugin definition
$.fn.hilight = function(options) {
// Extend our default options with those provided.
// Note that the first arg to extend is an empty object -
// this is to keep from overriding our "defaults" object.
var opts = $.extend({}, $.fn.hilight.defaults, options);
// Our plugin implementation code goes here.
};
// plugin defaults - added as a property on our plugin function
$.fn.hilight.defaults = {
foreground: ‘red‘,
background: ‘yellow‘
};
现在使用者可以包含像这样的一行在他们的脚本里:
//这个只需要调用一次,且不一定要在ready块中调用
$.fn.hilight.defaults.foreground = ‘blue‘;
接下来我们可以像这样使用插件的方法,结果它设置蓝色的前景色:
$(‘#myDiv‘).hilight();

如你所见,我们允许使用者写一行代码在插件的默认前景色。而且使用者仍然在需要的时候可以有选择的覆盖这些新的默认值:

// 覆盖插件缺省的背景颜色

$.fn.hilight.defaults.foreground = ‘blue‘;

// ...

// 使用一个新的缺省设置调用插件

$(‘.hilightDiv‘).hilight();

// ...

// 通过传递配置参数给插件方法来覆盖缺省设置

$(‘#green‘).hilight({

foreground: ‘green‘

});

2.4 适当的暴露一些函数

这段将会一步一步对前面那段代码通过有意思的方法扩展你的插件(同时让其他人扩展你的插件)。例如,我们插件的实现里面可以定义一个名叫"format"的函数来格式化高亮文本。我们的插件现在看起来像这样,默认的format方法的实现部分在hiligth函数下面。

Java代码

  1. // plugin definition

  2. $.fn.hilight = function(options) {

  3. // iterate and reformat each matched element

  4. return this.each(function() {

  5. var $this = $(this);

  6. // ...

  7. var markup = $this.html();

  8. // call our format function

  9. markup = $.fn.hilight.format(markup);

  10. $this.html(markup);

  11. });

  12. };

  13. // define our format function

  14. $.fn.hilight.format = function(txt) {

  15. return ‘<strong>‘ + txt + ‘</strong>‘;

  16. };

// plugin definition
$.fn.hilight = function(options) {
// iterate and reformat each matched element
return this.each(function() {
var $this = $(this);
// ...
var markup = $this.html();
// call our format function
markup = $.fn.hilight.format(markup);
$this.html(markup);
});
};
// define our format function
$.fn.hilight.format = function(txt) {
return ‘<strong>‘ + txt + ‘</strong>‘;
};

     
我们很容易的支持options对象中的其他的属性通过允许一个回调函数来覆盖默认的设置。这是另外一个出色的方法来修改你的插件。这里展示的技巧是进一步有效的暴露format函数进而让他能被重新定义。通过这技巧,是其他人能够传递他们自己设置来覆盖你的插件,换句话说,这样其他人也能够为你的插件写插件。
     
考虑到这个篇文章中我们建立的无用的插件,你也许想知道究竟什么时候这些会有用。一个真实的例子是Cycle插件.这个Cycle插件是一个滑动显示插件,他能支持许多内部变换作用到滚动,滑动,渐变消失等。但是实际上,没有办法定义也许会应用到滑动变化上每种类型的效果。那是这种扩展性有用的地方。
Cycle插件对使用者暴露"transitions"对象,使他们添加自己变换定义。插件中定义就像这样:

$.fn.cycle.transitions = {

// ...

};

这个技巧使其他人能定义和传递变换设置到Cycle插件。

2.5 保持私有函数的私有性

这种技巧暴露你插件一部分来被覆盖是非常强大的。但是你需要仔细思考你实现中暴露的部分。一但被暴露,你需要在头脑中保持任何对于参数或者语义的改动也许会破坏向后的兼容性。一个通理是,如果你不能肯定是否暴露特定的函数,那么你也许不需要那样做。

那么我们怎么定义更多的函数而不搅乱命名空间也不暴露实现呢?这就是闭包的功能。为了演示,我们将会添加另外一个“debug”函数到我们的插件中。这个
debug函数将为输出被选中的元素格式到firebug控制台。为了创建一个闭包,我们将包装整个插件定义在一个函数中。

Java代码

  1. (function($) {

  2. // plugin definition

  3. $.fn.hilight = function(options) {

  4. debug(this);

  5. // ...

  6. };

  7. // private function for debugging

  8. function debug($obj) {

  9. if (window.console && window.console.log)

  10. window.console.log(‘hilight selection count: ‘ + $obj.size());

  11. };

  12. //  ...

  13. })(jQuery);

 (function($) {
// plugin definition
$.fn.hilight = function(options) {
debug(this);
// ...
};
// private function for debugging
function debug($obj) {
if (window.console && window.console.log)
window.console.log(‘hilight selection count: ‘ + $obj.size());
};
// ...
})(jQuery);

我们的“debug”方法不能从外部闭包进入,因此对于我们的实现是私有的。

2.6
支持Metadata插件

在你正在写的插件的基础上,添加对Metadata插件的支持能使他更强大。个人来说,我喜欢这个Metadata插件,因为它让你使用不多的"markup”覆盖插件的选项(这非常有用当创建例子时)。而且支持它非常简单。更新:注释中有一点优化建议。

Java代码

  1. $.fn.hilight = function(options) {

  2. // ...

  3. // build main options before element iteration

  4. var opts = $.extend({}, $.fn.hilight.defaults, options);

  5. return this.each(function() {

  6. var $this = $(this);

  7. // build element specific options

  8. var o = $.meta ? $.extend({}, opts, $this.data()) : opts;

  9. //...

$.fn.hilight = function(options) {
// ...
// build main options before element iteration
var opts = $.extend({}, $.fn.hilight.defaults, options);
return this.each(function() {
var $this = $(this);
// build element specific options
var o = $.meta ? $.extend({}, opts, $this.data()) : opts;
//...  

这些变动行做了一些事情:它是测试Metadata插件是否被安装如果它被安装了,它能扩展我们的options对象通过抽取元数据这行作为最后一个参数添加到JQuery.extend,那么它将会覆盖任何其它选项设置。现在我们能从"markup”处驱动行为,如果我们选择了“markup”:

调用的时候可以这样写: jQuery.foo(); 或 $.foo();

Java代码

  1. <!--  markup  -->

  2. <div class="hilight { background: ‘red‘, foreground: ‘white‘ }">

  3. Have a nice day!

  4. </div>

  5. <div class="hilight { foreground: ‘orange‘ }">

  6. Have a nice day!

  7. </div>

  8. <div class="hilight { background: ‘green‘ }">

  9. Have a nice day!

  10. </div>

  11. 现在我们能高亮哪些div仅使用一行脚本:

  12. $(‘.hilight‘).hilight();

<!--  markup  -->
<div class="hilight { background: ‘red‘, foreground: ‘white‘ }">
Have a nice day!
</div>
<div class="hilight { foreground: ‘orange‘ }">
Have a nice day!
</div>
<div class="hilight { background: ‘green‘ }">
Have a nice day!
</div>
现在我们能高亮哪些div仅使用一行脚本:
$(‘.hilight‘).hilight();

2.7 整合 下面使我们的例子完成后的代码:

Java代码

  1. // 创建一个闭包

  2. (function($) {

  3. // 插件的定义

  4. $.fn.hilight = function(options) {

  5. debug(this);

  6. // build main options before element iteration

  7. var opts = $.extend({}, $.fn.hilight.defaults, options);

  8. // iterate and reformat each matched element

  9. return this.each(function() {

  10. $this = $(this);

  11. // build element specific options

  12. var o = $.meta ? $.extend({}, opts, $this.data()) : opts;

  13. // update element styles

  14. $this.css({

  15. backgroundColor: o.background,

  16. color: o.foreground

  17. });

  18. var markup = $this.html();

  19. // call our format function

  20. markup = $.fn.hilight.format(markup);

  21. $this.html(markup);

  22. });

  23. };

  24. // 私有函数:debugging

  25. function debug($obj) {

  26. if (window.console && window.console.log)

  27. window.console.log(‘hilight selection count: ‘ + $obj.size());

  28. };

  29. // 定义暴露format函数

  30. $.fn.hilight.format = function(txt) {

  31. return ‘<strong>‘ + txt + ‘</strong>‘;

  32. };

  33. // 插件的defaults

  34. $.fn.hilight.defaults = {

  35. foreground: ‘red‘,

  36. background: ‘yellow‘

  37. };

  38. // 闭包结束

  39. })(jQuery);

// 创建一个闭包
(function($) {
// 插件的定义
$.fn.hilight = function(options) {
debug(this);
// build main options before element iteration
var opts = $.extend({}, $.fn.hilight.defaults, options);
// iterate and reformat each matched element
return this.each(function() {
$this = $(this);
// build element specific options
var o = $.meta ? $.extend({}, opts, $this.data()) : opts;
// update element styles
$this.css({
backgroundColor: o.background,
color: o.foreground
});
var markup = $this.html();
// call our format function
markup = $.fn.hilight.format(markup);
$this.html(markup);
});
};
// 私有函数:debugging
function debug($obj) {
if (window.console && window.console.log)
window.console.log(‘hilight selection count: ‘ + $obj.size());
};
// 定义暴露format函数
$.fn.hilight.format = function(txt) {
return ‘<strong>‘ + txt + ‘</strong>‘;
};
// 插件的defaults
$.fn.hilight.defaults = {
foreground: ‘red‘,
background: ‘yellow‘
};
// 闭包结束
})(jQuery);

这段设计已经让我创建了强大符合规范的插件。我希望它能让你也能做到。

3、总结

jQuery为开发插件提拱了两个方法,分别是:

jQuery.fn.extend(object);  给jQuery对象添加方法。 jQuery.extend(object);
 为扩展jQuery类本身.为类添加新的方法。

3.1 jQuery.fn.extend(object);

fn 是什么东西呢。查看jQuery代码,就不难发现。

jQuery.fn = jQuery.prototype = {

init: function( selector, context ) {//.... 

//......

};

原来 jQuery.fn = jQuery.prototype.对prototype肯定不会陌生啦。虽然
javascript 没有明确的类的概念,但是用类来理解它,会更方便。jQuery便是一个封装得非常好的类,比如我们用 语句 $("#btn1") 会生成一个
jQuery类的实例。

jQuery.fn.extend(object);
对jQuery.prototype进得扩展,就是为jQuery类添加“成员函数”。jQuery类的实例可以使用这个“成员函数”。

比如我们要开发一个插件,做一个特殊的编辑框,当它被点击时,便alert 当前编辑框里的内容。可以这么做:

$.fn.extend({

alertWhileClick:function(){

$(this).click(function(){

alert($(this).val());

});

}

});

$("#input1").alertWhileClick(); //页面上为:<input id="input1"
type="text"/>

$("#input1") 为一个jQuery实例,当它调用成员方法
alertWhileClick后,便实现了扩展,每次被点击时它会先弹出目前编辑里的内容。

3.2 jQuery.extend(object); 

为jQuery类添加添加类方法,可以理解为添加静态方法。如:

$.extend({

add:function(a,b){return a+b;}

});

便为 jQuery 添加一个为 add 的 “静态方法”,之后便可以在引入 jQuery 的地方,使用这个方法了,$.add(3,4); //return
7

时间: 2024-08-11 03:35:40

Jquery 添加插件的相关文章

jquery mutilselect 插件添加中英文自动补全

jquery mutilselect默认只能根据设置的option来进行自动提示 $.each(availableTags, function(key, value) { $('#channels') .append($("<option></option>") .attr("value",value) .text(value)); //默认按text中的value来自动提示 }); 阅读下面的需求: 有这么几个选项: 北京 天津 湖北 输入

JavaScript之jQuery-9 jQuery 开发插件(添加新全局函数、添加jQuery对象方法、添加新简写方法、方法参数)

一.添加新的全局函数 全局函数 - 全局函数,实际上就是jQuery对象的方法,从实践角度看,它们是位于jQuery命名空间内部的函数 - jQuery内置的某些功能是通过全局函数实现的 - $.ajax()函数就是典型的全局函数 - 向jQuery命名空间添加一个函数,只需要将这个新函数指定为jQuery的一个属性值   - 如果要使用该全局函数时,可通过一下代码调用 - 也可以通过别名来调用 添加多个函数 - 如果我们想在插件中提供多个全局函数,可以独立的声明这些函数   - 还可以使用$.

Jquery添加掩盖层的插件

这是插件的代码 1 $.fn.extend({ "showCover": function () { 2 //遮盖层 半透明的层 3 var $div = $("<div class='cover'></div>"); 4 $("body").append($div); 5 //获取窗口的宽度和高度 6 var width = $(window).width(); 7 //获得文档的高度 8 var height = $(

jQuery.fly插件实现添加购物车抛物线效果

样例 使用电商 APP 购买商品时,很多都有上图的红色小球抛物线效果,下面通过 jQuery.fly 插件来实现一个简单 Demo. 实现 简单思路: 确定抛物线的起始和终止位置: 通过 js 在起始位置创建一个 document 对象,作为红色小球: 通过 jQuery.fly 插件提供的fly函数来移动小球,移动至终止位置: 当小球到达终止位置后,通过fly插件提供的 onEnd 回调函数,将小球销毁: Demo 源码: <!DOCTYPE html> <html lang=&quo

Jquery Media插件使用,解决在线预览及打开PDF文件

用到过PDF的媛媛and猿猿们,总会发现这大千世界之万能播放器插件,总能少了对媒体控制的接口. 你总会发现PDF无法像img图片一样正常加载展现出来,那么我们在通用语法的基础上拓展出了适用于预览及打开的PDF插件便于开发应用. 最主要的是使用到了一个jquery的插件jquery.media.js,使用这个插件就很容易实现了. 该插件可以播放多种类型的多媒体文件包括:Flash, Quicktime, Windows Media Player, Real Player, MP3, Silverl

jQuery开发插件的两种方式

最近挺多人写jQuery的,都是关于jQuery扩展方面的,使用方面的讲的比较多,但是关于详细的一个基础的过程讲的比较少一点,做web开发的基本上都会用到jQuery,本人就根据jQuery的使用经验讲讲插件开发.jQuery插件开发两种方式:一种是类扩展的方式开发插件,jQuery添加新的全局函数(jQuery的全局函数是属于jQuery命名空间的函数),如果将jQuery看成一个类,那么就相当于给jQuery类本身添加方法.第二种是对象扩展的方式开发插件,即jQuery对象添加方法. 类扩展

jQuery验证插件

学习要点: 1.使用 validate.js 插件 2.默认验证规则 3.validate()方法和选项 4.validate.js 其他功能 验证插件(validate.js),是一款验证常规表单数据合法性的插件.使用它,极大的解放了在表单上繁杂的验证过程,并且错误提示显示的完善也增加了用户体验. 一.使用 validate.js 插件 官网下载:http://bassistance.de/jquery-plugins/jquery-plugin-validation最重要的文件是valida

jQuery幻灯片插件Skippr

Skippr是一款带左右箭头,索引按钮,滑动切换效果并且轻量.快速的幻灯片 设置 引入jquery.skippr.css.jquery.js.jquery.skippr.js 注意jQuery必须在jquery.skippr.js之前 <head> <link href="css/jquery.skippr.css" rel="stylesheet" type="text/css" > <script src=&qu

jQuery Validate 插件,表单验证功能

连接地址:http://www.w3cschool.cc/jquery/jquery-plugin-validate.html jQuery Validate jQuery Validate 插件为表单提供了强大的验证功能,让客户端表单验证变得更简单,同时提供了大量的定制选项,满足应用程序各种需求.该插件捆绑了一套有用的验证方法,包括 URL 和电子邮件验证,同时提供了一个用来编写用户自定义方法的 API.所有的捆绑方法默认使用英语作为错误信息,且已翻译成其他 37 种语言. 该插件是由 Jör