码迷,mamicode.com
首页 > Web开发 > 详细

jQuery的扩展

时间:2016-01-30 22:31:23      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

  我们自己通过扩展jQuery来达到 “通过$.xx(paras)的形式来进行调用某个jQuery对象的xx(paras)方法”。

下面就是一个实例:

 1 (function(j){//这里的j是一个形参,表示传入的jQuery对象,j可以任意填写
 2     j.extend({//相当于给jQuery对象加上了一个属性readName,而这个属性是一个方法
 3         // 通过传入的jQuery对象,
 4         // 然后再用jQuery.exetend(functionName:function(){});
 5         // 这种方式扩展jQuery的方法,
 6 
 7         // 使用方法或者说是调用方式:$.readName(‘I am 你大爷 ‘); 
 8     readName:function(name){
 9         // alert(typeof this);
10         // alert(typeof window);
11         // alert(typeof this.name);
12         console.log(typeof this.name);
13         console.log(typeof this);
14         if(name==null||name==undefined||name==‘‘){
15             // alert(‘没有入参name!‘);
16             console.log(‘没有入参name!‘)
17 
18         }else{
19             // alert(‘入参name:‘+name);
20             console.log(‘入参name:‘+name);
21     }
22 }
23 })
24 })(jQuery)//这个jQuer一定要这样写,表示传入jQuery对象

 

jQuery的扩展

标签:

原文地址:http://www.cnblogs.com/Sunnor/p/5172039.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!