JavaScript removechild use considerations _javascript Tips

Source: Internet
Author: User
If: A piece of ordinary code:
Where gift_list is the ID of a table
Copy Code code as follows:

var giftbody = document.getElementById ("Gift_list"). getElementsByTagName ("tbody") [0];
var gifttrs = Giftbody.getelementsbytagname ("tr");
for (Var i=0;i<gifttrs.length;i++)
{
Gifttrs[i].removechild (Gifttrs[i]);
}

Then only the first row is deleted, because when one is deleted, the position of the row moves one bit forward.
Gifttrs.length will also reduce the corresponding one.
So the right way to do this is:
Copy Code code as follows:

var giftbody = document.getElementById ("Gift_list"). getElementsByTagName ("tbody") [0];
var gifttrs = Giftbody.getelementsbytagname ("tr");
var len = gifttrs.length; You need to store the length property of the Gifttrs.length
for (Var i=0;i<len;i++)
{
Giftbody.removechild (Gifttrs[0]);
}

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.