Delete a node using JavaScript

Source: Internet
Author: User

Original article: http://www.eyike.com/html/y2009/javascript-delete-element-node.html

 
  <Div> <InputOnclick= "Removenode (this )"Type= "Text"Value= "Click to remove this input box" /> </Div>

This method is useful in IE, but an error will be reported in standard browsers such as Firefox.Removenode is not definedBut there is a method to operate DOM nodes in the core JS:Removechild ()The name indicates that the sub-node is removed, so we can change it to remove the specified node. We can first find the parent node of the node to be deleted, then, use removechild in the parent node to remove the node we want to remove. We can define a method called removeelement.

Code

  <  Script  Type  = "Text/JavaScript"  >  
Function Removeelement (_ element ){
VaR _ Parentelement = _ Element. parentnode;
If (_ Parentelement ){
_ Parentelement. removechild (_ element );
}
}
</ Script >
< Div > < Input Onclick = "Removeelement (this )" Type = "Text" Value = "Click to remove this input box" /> </ Div >

 

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.