JS implementation Create Delete HTML element summary _javascript tips

Source: Internet
Author: User

If I want to create a DIV element.

1. Create using DOM objects:

Create an element using the document.createelement (' div ') method.

2. Use jquery to create:

Create an element directly using the method of $ (' <div> new element </div> ' created through jquery).

If you need to delete the DIV element with id ' div2js '.

1. Using DOM objects

First you need to find the parent element of the deleted element and delete the child element that it needs to delete through the parent element.

var el = document.getElementById (' Div2js ');
 El.parentNode.removeChild (EL);

2. Using jquery

Locate and delete directly.

$ (' #div2js '). Remove ();

Finally, let's look at an example

<script type= "Text/javascript" language= "JavaScript" > Function Inputonblur () {var name=document.getelementbyi 

     D ("name"). Value; 
      if (name.length >10 | | name.length<2) {var Element=document.getelementbyid ("message"); 
      if (Element) {//alert (Element.parentNode.innerHTML); 
      Element.parentNode.removeChild (Element); 
               var myspan=document.createelement ("span"); 
               document.getElementById ("containers"). AppendChild (MySpan); 
               myspan.id = "message"; 
        myspan.innerhtml = " Please enter the correct name"; 
      } else{var Element=document.getelementbyid ("message"); 
      if (Element) {//alert (element.innerhtml); 
      Element.parentNode.removeChild (Element); 
               var myspan=document.createelement ("span"); 
        document.getElementById ("containers"). AppendChild (MySpan);       myspan.id = "message"; 
          myspan.innerhtml = " The username input correctly '; } </script> <div> Name: <input id= "name" type= "text" onblur= "Inputonblur ()"/><span id= "containers "></span></div> <script language=" JavaScript > document.getElementById ("Containers").  
 InnerHTML = "<font color=red> Please enter name </font>";

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.