JavaScript dynamically adds HTML nodes

Source: Internet
Author: User

I've never had much contact with the project that needs to add and delete HTML nodes dynamically, this project is used and learned.

Add a <tr id= "tr" > Label,<tr> tag with 4 <td> tags in a <table id= tab > tab

function inserttr () {   = document.createelement ("tr");    = "<td></td>" + "<td></td>" + "<td></td>" + "<td></td>";    = "tr";    = html;   document.getElementById ("tab"). appendchild (tr);}   

Here is the <tr> tag inside the 4 <td> tag HTML code as a string to write this <tr> tag

Remove a <tr id= "tr" > Label from a <table id= tab > tab

function deltr () {  document.getElementById("tab"). RemoveChild (document.getElementById ("tr"));}

JavaScript dynamically adds HTML nodes

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.