jquery连缀语法如何实现
我想熟悉javascript的没有不知道jquery的吧,作为首屈一指的javascript框架,他的许多特性都让人兴奋不已,其中不得不提的就是特有的连缀书写语法了,那他到底只怎么实现的呢,我们也来实现一个吧.
代码如下:
sx.$=function(id){
var t=(typeof(id)=="string"?document.getelementbyid(id):id);
t.text=function(){
return this.innertext?this.innertext:this.innerhtml.replace(//<.*?/>/igm,"");
}
t.html=function(){
return this.innerhtml?this.innerhtml:null;
}
t.first=function(){
return this.firstchild?this.firstchild.nodename!="#text"?sx.$(this.firstchild):null:null;
}
t.last=function(){
return this.lastchild?this.lastchild.nodename!="#text"?sx.$(this.laschild):null:null;
}
t.pre=function(){
return this.previoussibling?sx.$(this.previoussibling):null;
}
t.next=function(){
return this.nextsibling?sx.$(this.nextsibling):null;
}
t.parent=function(){
return this.parentnode?sx.$(this.parentnode):null;
}
t.setevent=function(e,f){
if(t.attachevent){
t.attachevent("on"+e,f);
}else{
t.addeventlistener(e,f,false);
}
}
t.removeevent=function(e,f){
if(t.dettachevent){
t.dettachevent("on"+e,f);
}else{
t.removeeventlistener(e,f,false);
}
}
t.setstyle=function(s){
var s=s.split(",");
for(var i=0;i<s.length;i++){
var s1=s[i].split(":");
this.style[s1[0]]=s1[1];
}
}
t.getstyle=function(s){
if(this.currentstyle){
return this.currentstyle[s];
}else{
return document.defaultview.getcomputedstyle(this,null).getpropertyvalue(s);
}
}
t.selectpath=function(m){
var m1=m;
var m=m.split("/");
var t=[];
var e=this.getelementsbytagname("*");
for(var i=0;i<e.length;i++){
var e1=e[i]
var a="";
var i1=m.length-1;
while(e1!=this){
a=e1.tagname+"/"+a;
e1=e1.parentnode;
//alert(a);
}
//alert(a);
if(m1.tolowercase()+"/"==a.tolowercase()){
t.push(sx.$(e[i]));
}
}
return t;
}
t.get=function(a){
return this.getattribute(a);
}
t.set=function(a,v){
return this.setattribute(a,v);
}
t.paste=function(h){
if(typeof(h)=="string"){
var d=document.createelement("span");
d.innerhtml=h;
}else{
var d=document.createelement("span");
d.appendchild(h);
}
var t1=this.childnodes;
for(var i=0;i<t1.length;i++){
alert(t1[i])
this.removechild(t1[i]);
}
this.appendchild(d);
d.removenode(false);
}
return t;
}
sx.$$=function(){
var t=[]
for(var i=0;i<arguments.length;i++){
t.push(sx.$(arguments[i]))
}
return t;
}
上面的代码是我最近写跨平台的javascript框架的一段核心代码,可以看出我用的是递归实现连缀语法的,在自身的方法里不断调用自身,这样实验闭包,使对象连续操作.顺便说一下,我这里对t对象用的是方法,如果是属性的话,那么在innerhtml里会显示出来的。
上一篇: 专利曝光小米可折叠手机:书本式开合、两块真全面屏配弹出镜头
下一篇: 拷贝指定文件夹到指定目录下