jQuery的扩展

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

下面就是一个实例:

 (function(j){//这里的j是一个形参,表示传入的jQuery对象,j可以任意填写
j.extend({//相当于给jQuery对象加上了一个属性readName,而这个属性是一个方法
// 通过传入的jQuery对象,
// 然后再用jQuery.exetend(functionName:function(){});
// 这种方式扩展jQuery的方法, // 使用方法或者说是调用方式:$.readName('I am 你大爷 ');
readName:function(name){
// alert(typeof this);
// alert(typeof window);
// alert(typeof this.name);
console.log(typeof this.name);
console.log(typeof this);
if(name==null||name==undefined||name==''){
// alert('没有入参name!');
console.log('没有入参name!') }else{
// alert('入参name:'+name);
console.log('入参name:'+name);
}
}
})
})(jQuery)//这个jQuer一定要这样写,表示传入jQuery对象
上一篇:洛谷P1134 阶乘问题


下一篇:iOS 模糊、精确搜索匹配功能方法总结 By HL