jQuery技术

jQuery插件开发全解析(4)

字号+ 作者:H5之家 来源:H5之家 2015-10-27 12:30 我要评论( )

jQuery.fn = jQuery.prototype = { init: function( selector, context ) {//.... //...... }; 复制代码 原来 jQuery.fn = jQuery.prototype.对prototype肯定不会陌生啦。虽然 JavaScript 没有明确的类的概念,但是

  • 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

     

  • 1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

    相关文章
    • 7个有用的jQuery小技巧

      7个有用的jQuery小技巧

      2016-02-26 13:02

    • 全面详细的jQuery常见开发技巧手册

      全面详细的jQuery常见开发技巧手册

      2016-02-26 10:02

    • jQuery Touchwipe Plugin 轻量级的手机触摸特效插件(javascript

      jQuery Touchwipe Plugin 轻量级的手机触摸特效插件(javascript

      2016-02-16 17:04

    • javascript与jQuery的那些事

      javascript与jQuery的那些事

      2016-01-19 12:01

    网友点评
    e