The difference between the Innerhtml,innertext,value in JS

Source: Internet
Author: User

First of all, let me tell you the difference between the innerhtml,innertext,value I think.

InnerHTML is to add HTML code to the control, which is to set the HTML inside an element.

eg


<meta http-equiv= "Content-type" content= "text/html; Charset=utf-8 ">
<title>insert title here</title>
<body>
<p id= "Demo" >my first paragraph.</p>
<script>
document.getElementById ("Demo"). Innerhtml= "</script>
</body>


InnerText adding text to a control


<body>
<p id= "Demo" >my first paragraph.</p>
<script>
document.getElementById ("Demo"). innertext= "</script>
</body>


Value= "" I understand that the Value property in the control is directly assigned to something in double quotes.

[HTML] View plain copy
<body>
<p id= "Demo" >my first paragraph.</p>
<input id= "Input" type= "text" ></input>
<script>
document.getElementById ("Input"). Value= "</script>
</body>

For example, <input/> has the Value property to display content when it is <input value= "content"/> instead of <input > Content <input/>

The difference between the Innerhtml,innertext,value in JS

Related Article

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.