Using JavaScript to wrap text element nodes with a div _javascript tips

Source: Internet
Author: User

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 perform an update on the parent element by using the. InnerHTML property, but the problem is that all of the bound event listeners will fail because an HTML element is recreated when you use InnerHTML. This is 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 ChildNodes is a collection of dynamic nodes, as long as the mobile node affects his index value. We use the while loop to detect the firstchild of the parent element, and if it returns a value that represents false, then you know that all nodes have moved to the new parent!

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.