Javascript replaceChild () _ javascript tips-js tutorial

Source: Internet
Author: User
This article mainly introduces how to use javascript to replace existing elements with replaceChild (). For more information, see replaceChild (a, B ).
Parameter a: the node to be inserted,
Parameter B: the node to be replaced

The Code is as follows:


Var oDiv = document. getElementById ("guoDiv ");
Var oSpan = document. createElement ("span ");
OSpan. innerHTML = "4 ";
Var firsChild = oDiv. firstElementChild? ODiv. firstElementChild: oDiv. firstChild
Var returnNode = oDiv. replaceChild (oSpan, firsChild); // Replace the first element and return the replaced element.
Alert (returnNode. innerHTML); // 1
Var lastChild = oDiv. lastElementChild? ODiv. lastElementChild: oDiv. lastChild;
OSpan = document. createElement ("span ");
OSpan. innerHTML = "5 ";
ReturnNode = oDiv. replaceChild (oSpan, lastChild); // Replace the last one and return the replaced element.
Alert (returnNode. innerHTML); // 3


The Code is as follows:



1
2
3

Related Article

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.