Using JS to manipulate ELEMENT nodes

Source: Internet
Author: User

Does the 1-node access relationship exist as an attribute? box1.nextelementsibling           Get the next sibling node of Box1;  Box1.parentNode.childNodes     Get all sub-nodes Box1.parentNode.children         Get all child nodes Box1.parentNode.firstElementChild         Check the operation of your   2 node?    Create node: Var & NBSP;AAA = document.createelement (' li ');    Add node: Box1.appendchild (AAA);                       box1.insertbefore (BBB,AAA);  &nbsp ;                box1.insertafter ();    Delete node: Box1.removechild (AAA); nbsp                  aaa.parentnode.removechild (AAA);      //Delete yourself     Replace node:  box1.replacechild (Aaa,targetnode);  3 two ways to set or get element nodes?  & nbsp;         var Elenode = Document.getelmentSbytagname (' img ') [0];   //Set value     ELENODE.SRC = ' images/tm.png ';    elenode.bbb = ' Huihua ' ;    Elenode.setattribute (' id ', ' dog ');    elenode.setattribute (' CCC ', ' Huihua ');    //Get values     Console.log (elenode.tagname);    Console.log (elenode.getattribute (' id '));     //delete values     Elenode.removeattribute (' id ');

Using JS to manipulate ELEMENT nodes

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.