vara节点
AST的全称是AbstractSyntaxTree,即抽象语法树,简称语法树(Syntaxtree)。树上的每个节点代表源代码中的一个结构。 JavaScript领域常用的AST解析库包括babel,esprima,espree,acvarnode=cc.find("Canvas/bg");//通过accesspath获取节点vara=this.node.getChildByName('name');//通过name获取子节点node.getComponent(cc.Label).string='ab
(1)CreateanewnodecreateDocumentFragment()//CreateaDOMfragmentcreateElement()//CreateaspecificelementcreateTextNode()//Createatextnode(2)Add,remove,replace,insertappendChi//CreateanodevardivEle=document.createElement("div");varpEle=document.createElement(" p");varaEle=document.createElement("a");//添加节点document.body
//Getthechildnodefirstvarb=document.querySelector('.b');//Gettheparentnodevara=b.parentNode;console.log(a);//Getthenearestparentnodeoftheionelement//如果返回nullifnoparentnodecanbefoundGetchildnodes//vara=$('.red');// 所有包含`class="red"`的节点都会返回//例如://通常很多节点有多个类,我们可以找到同时包含red和green的节点:vara=$('.red
vara=10;functionf1(){console.log(a);//undefinedvara=20console.log(a);//20}console.log(a);//10f1()变量提升预解析:浏览器在解析代码之前,结合变量和函数functionfunc1 (){vara=123;b=456}func1();//alert(a);//alert(b);//Notrecommended1NopointscanbeaddedattheendofachlineNo.Nosemicolonwillendeachlinewithanewlinea=1;b=2;a=1b=2
相关推荐