dom文档树的作用是将网页的所有内容转化为js节点对象进行操作。因此,dom文档树的内部组成是有很多叶子节点节点对象。叶子有七种类型,包含了所有的网页namenode.getComponent(cc.Label).string='ab
//Getthechildnodefirstvarb=document.querySelector('.b');//Gettheparentnodevara=b.parentNode;console.log(a);//Getthenearestparentnodeoftheionelement//如果返回nulliftheparentnodecannotbefoundGetthechildnode//(1)CreateanewnodecreateDocumentFragment()//CreateaDOMfragmentcreateElement()/ /CreateaspecificelementcreateTextNode()//Createatextnode(2)添加、删除、替换、插入追加池
vara=10;functionf1(){console.log(a);//undefinedvara=20console.log(a);//20}console.log(a);//10f1()变量提升预解析:浏览器在解析代码之前,变量和函数全名AST是抽象语法树 ,即抽象的语法树,简称语法树(Syntaxtree)。树上的每个节点代表源代码中的一个结构。 JavaScript领域常用的AST解析库有babel、esprima、espree、ac
//CreatenodevardivEle=document.createElement("div");varpEle=document.createElement("p");varaEle=document.createElement("a");//Addnodedocument.bodynode.getChildByName("子节点名称"),etc . varnode=cc.find("Canvas/bg");//通过访问路径获取节点vara=this.node.getChildByName('name');//通过名称获取节点