Wrapping text element nodes with JavaScript __java

Source: Internet
Author: User
Original link: Wrapping text Nodes and Elements with JavaScript original date: 2014-09-04 translation Date: 2014-09-06 Translator: Anchor
When your application relies on a particular JavaScript class library, you inadvertently try to solve some of the library's own problems, not the language problem. For example, when I try to wrap text (which may also contain HTML elements) with a DIV element. Suppose you have the following HTML:
This is some text and <a href= "" >a link</a>.

This time if you want to convert it to the following:
<div>this is some text and <a href= "" >a link</a>.<div>

The simplest method of violence is that you can pass on the parent element . InnerHTMLproperty to perform the update, but the problem is that all the bound event listeners will fail because the InnerHTMLAn HTML element is recreated when it is created. This is really a big glass. So this time can only use JavaScript to achieve--the ruler is short, inch. Here is the implementation code:
var newwrapper = document.createelement (' div ');
while (existingparent.firstchild) {
    //move DOM element, does not create new element
    Newwrapper.appendchild (existingparent.firstchild);
}

The For loop cannot be used here because childnodesis a collection of dynamic nodes, as long as the mobile node affects his index value. We use whileThe loop always detects the parent element's FirstChild, if it returns a value that represents false, then you know that all nodes have moved to the new parent!

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.