51Testing软件测试论坛
标题:
jQuery构造的基本结构
[打印本页]
作者:
wuxue107
时间:
2015-4-25 12:31
标题:
jQuery构造的基本结构
本帖最后由 wuxue107 于 2015-4-25 12:40 编辑
jQuery = function(selor){
return new jQuery.fn.init(selor);
}
// jQuery实例方法
jQuery.fn = jQuery.prototype = {
addTag : function(){
var s = '';
for(var i=0;i<this.members.length;i++){
s = s + '<' + this.members[i] + '>';
}
return s;
}
}
//jQuery静态方法
jQuery.trim = function(){
}
//构造器
jQuery.fn.init = function(selor){
this['members'] = selor.split(',');
};
jQuery.fn.init.prototype = jQuery.fn; //关键
var obj1 = jQuery('1,2,3');
//WScript.Echo(obj1.addTag());
console.log(obj1.addTag());
复制代码
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2