JavaScript appendChild, insertBefore, and insertAfter instructions _ javascript skills

Source: Internet
Author: User
Tags javascript appendchild
The deletion and insertion operations on HTML node elements need to be used in the past few days. Due to some troubles when using the insertBefore method, we can summarize appendChild, insertBefore, and insertAfter as knowledge. AppendChild Definition
AppendChild (newChild: Node): Node
Appends a node to the childNodes array for the node.
Supported: IE 5.0 +, Mozilla 1.0 +, Netscape 6.0 +, Safari 1.0 +, and Opera 7.0 +
Add a node to the child node array of the specified node. It seems to be a bit difficult to read. Simply put, add the element to the specified node.
AppendChild usage
Target. appendChild (newChild)
Insert newChild as the target subnode after the last subnode
AppendChild example

The Code is as follows:


Var newElement = document. Document. createElement ('label ');
NewElement. Element. setAttribute ('value', 'username :');
Var usernameText = document. Document. getElementById ('username ');
UsernameText. appendChild (newElement );


InsertBefore Definition
The insertBefore () method inserts a new child node before an existing child node.
The insertBefore () method is used to insert a new subnode before an existing subnode.
InsertBefore usage
Target. insertBefore (newChild, existingChild)
NewChild acts as the target subnode before being inserted to the existingChild Node
ExistingChild is an optional parameter. If it is null, the effect is the same as that of appendChild.

InsertBefore example

The Code is as follows:


Var oTest = document. getElementById ("test ");
Var newNode = document. createElement ("p ");
NewNode. innerHTML = "This is a test ";
OTest. insertBefore (newNode, oTest. childNodes [0]);


Well, should there be insertBefore and insertAfter?
Well, let's use Aptana to compile an example. But the smart prompts of Aptana tell me that there is actually no insertAfter method.
Then define a Luo :)
InsertAfter Definition

The Code is as follows:


Function insertAfter (newEl, targetEl)
{
Var parentEl = targetEl. parentNode;
If (parentEl. lastChild = targetEl)
{
ParentEl. appendChild (newEl );
} Else
{
ParentEl. insertBefore (newEl, targetEl. nextSibling );
}
}


InsertAfter usage and Examples

The Code is as follows:


Var txtName = document. getElementById ("txtName ");
Var htmlSpan = document. createElement ("span ");
HtmlSpan. innerHTML = "This is a test ";
InsertAfter (htmlSpan, txtName );


Insert htmlSpan as the brother node of txtName to the txtName node.

Summary:
1. appendChild and insertBefore are used on nodes, while insertAfter is just a UDF.
2. Compared with appendChild, insertBefore can insert new nodes to any position in the array of child nodes of the target node.
3. Use appendChild and insertBefore to insert a new node. The premise is that the sibling node must have a common parent node.
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.