InnerText and Textcontent comparison and use introduction _javascript skills

Source: Internet
Author: User
Today in the use of innertext encountered a compatibility problem, Firefox does not support InnerText method, check the next mdn, found that Firefox has a similar method, called textcontent, it and IE innertext similar, Is the method used to get (set) the text in the element.

Grammar
• Set up
Copy Code code as follows:

element.textcontent = "text";

• Get
Copy Code code as follows:

var text = element.textcontent;

Copy Code code as follows:

Note: textcontent is similar to innertext and also gets the text content of the child elements, such as
<div>this is <span>a</span> text!</div>
Div.textcontent = = "This is a text!"

the difference between the innertext and the
Textcontent Gets the content of all elements, including ' <script> ' and ' <style> ' elements
InnerText does not get the content of the hidden element, and Textcontent does not
innertext will trigger Reflow, and textcontent will not
The innertext return value is formatted, and Textcontent does not

Mainstream browser support situation
IE 9+
Chrome 1+
Firefox (Gecko)

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.