How to delete a subnode created by javascript

Source: Internet
Author: User

How to delete a subnode created by javascript

This example describes how to delete a subnode created by javascript. Share it with you for your reference. The details are as follows:

The node created by js does not know how to delete it at the moment... It took a lot of time

?

1

2

3

4

5

6

7

8

9

10

For (var I = 0; I <jsonList. length; I ++ ){

Var li_button = document. createElement ("li ");

Li_button.className = "button ";

Var li_button_a = document. createElement ("");

Li_button_a.id = jsonList [I]. _ id;

Var li_button_text = document. createTextNode (jsonList [I]. projectName );

Li_button_a.appendChild (li_button_text );

Li_button.appendChild (li_button_a );

Ul_level2.appendChild (li_button );

}

Later I learned that the node is actually

The content of innerHTML = ''In ul_level2.innerHTML ='' In ul_level2.innerHTML = ''can be cleared as long as it is empty.

I hope this article will help you design javascript programs.

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.