HTML code to modify directly by double-clicking the page element

Source: Internet
Author: User

  <! doctype html public  "-//w3c//dtd xhtml 1.0 transitional//en"   "http:// Www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ""
<meta http-equiv= "Content-type"  content= "Text/html; charset=utf-8" &NBSP;/>
<title> HTML code </title> that modifies the page element directly;
<script type= "Text/javascript" >
Function showelement (Element)
{
    var oldhtml =  element.innerhtml;   //to get the content before the element
    var newobj =  Document.createelement (' input ');    //create an INPUT element
    newobj.type =   ' text ';    //add type
     for newobj elements;
    // Sets the event that newobj loses focus
    newobj.onblur = function () {
         element.innerhtml = this.value ? this.value : oldhtml;   // When triggered, determines whether the value of the newobj is empty, is empty, does not modify, and returns oldhtml.
        }
    element.innerHTML =  ';    //set element content to empty
     element.appendchild (newobj);    //Add child elements
    
     newobj.focus ();    //

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.