Javascript: DOM node (new HTML element/delete HTML element), javascriptdom

Source: Internet
Author: User

Javascript: DOM node (new HTML element/delete HTML element), javascriptdom

You can use DOM to Create HTML elements or delete existing HTML elements.

Code organized from w3school: http://www.w3school.com.cn

(1) New element:

<Script> // create a new <p> element var newEle = document. createElement ("p"); // create a text node var node = document. createTextNode ("this is a new Section created using Javascript. "); // Add the text node to the newly created <p> element newEle. appendChild (node); var div1_ele = document. getElementById ("div1"); // Add the newly created element to the existing element div1_ele.appendChild (newEle); </script>
(2) Deleting HTML elements

<Script> // When deleting an element, you must first obtain its parent element function deleteEle () {var parent = document. getElementById ("div_02"); var child = document. getElementById ("div_02_p2"); parent. removeChild (child);} // use the code to obtain the parent element function deleteEle3 () {var child = document. getElementById ("div_02_p3"); child. parentNode. removeChild (child) ;}</script>
:


Sample Code:

<! DOCTYPE html PUBLIC "-// W3C // dtd xhtml 1.0 Transitional // EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 




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.