Home Web Front-end JS Tutorial Difference between innerText and textContent

Difference between innerText and textContent

Jan 16, 2018 am 11:15 AM
javascript

<p>Many people are confused about innerText and textContent, because both can be used to obtain text content. In fact, there are still many differences between the two. This article will introduce the similarities and differences of these two properties, hoping it can help everyone's learning. help.

Difference between innerText and textContent

<p>1. Previous wrong understanding

<p>innerText IE6 started to support it. At that time , Firefox browser does not support this API, and it was not supported until Firefox 45+ in March 2016.

Difference between innerText and textContent

<p>The textContent IE9 browser has only begun to support:

Difference between innerText and textContent

<p>Due to compatibility, we are developing PC projects When obtaining the text content of an element, the following statement is used:

var text = dom.innerText || dom.textContent;
Copy after login
<p> Over time, it is mistakenly believed that innerText and textContent have the same function.

<p>A recent practice suddenly made me realize, mother, it turns out there is a difference between innerText and textContent. This difference is easy for newbies to know (because they will wonder why there are two APIs), and I am like this The uncle who was deeply affected by the compatibility issue didn't notice it (thinking that IE's text acquisition API and Firefox's text acquisition API support each other).

<p>What is the difference? Let's see a few examples.

<p>2. The difference between innerText and textContent

<p>One of the differences is that the calling object is different. innerText can only be called on HTML elements, but textContent can be called on any Node node: HTMLElement.innerText and Node.textContent.

The second difference is that the <p>value acquisition rules are different.

<p>1. Rule differences between block-level elements and line breaks

It is known that there is the following piece of HTML:<p>
<p id="dom">一段文字内容<span style="position:absolute;">...</span></p>
Copy after login

The real-time effect is as follows:<p>
一段文字内容…
Copy after login

You can see that the dots and dots in the <p> element with position:absolute set... are closely connected to the previous text content, before and after without any spaces.

However, when we obtain the <p>innerText and textContent## of the <p> element respectively with id="dom" When the # value was reached, something interesting happened. The return value of innerText actually had a space in front of the dot. As shown in the screenshot below:

<p>

<p>Difference between innerText and textContent

innerText<p> and textContent show differences, seeing is believing, You can click here: InnerText and textContent difference comparison demo Why is there such a difference?

<p>In fact,

innerText<p> will retain the line wrapping characteristics of block-level elements and present them in the form of line breaks. In HTML, if white-space is not pre or pre-wrap, it will appear as a space. That is to say, the spaces in the picture below are actually line breaks:

<p>Difference between innerText and textContentFor example, if we set the parent element to render the result

white-space:pre<p>, then The effect shown in the figure below will appear:

<p>Difference between innerText and textContentIn this example, although the

<p> element is an inline element, due to the position:absolute makes its display calculated value become block. Therefore, although there is no line break visually, when innerText is obtained Line breaks still occur, resulting in spaces.

2. Rule differences regarding whether to obtain hidden elements<p>It is known that there is the following piece of HTML:

<p id="dom2">我后面有一段隐藏文字<span hidden>,就是我啦!</span></p>
Copy after login
<p>At this time, we display ## The difference will also be seen in the

return values ​​of #dom2.innerText<p> and dom2.textContent, as shown in the figure below:

<p> can be seen , Difference between innerText and textContentdisplay:none

elements cannot be obtained using <p>innerText, but textContent can, regardless of whether the element is hidden or not. You can click here: InnerText and textContent difference comparison demo

<p>3. Rule differences in performance and reflow

<p><p>此外,由于innerText属性值的获取会考虑CSS样式,因此读取innerText的值将触发回流以确保计算出的样式是最新的,而回流在计算上很昂贵,会降低性能,因此应尽可能避免回流。而textContent只是单纯读取文本内容,因此性能更高。

<p>4. IE浏览器不符合上面规则

<p>但是在IE浏览器下,innerText的表现和规范是不符的,最终表现为textContent属性一样的效果,也就是没有空格,也不会不显示隐藏元素,例如下面IE11下的效果截图:

<p>Difference between innerText and textContent

<p>另外,与textContent不同,在Internet Explorer(版本11及以下)中更改innerText将从元素中移除子节点,并永久销毁所有子文本节点。不可能再将节点插入任何其他元素或同一元素中。

<p>三、最后的结论

<p>innerText由于存在诸多特别的特性、以及兼容性差异,以及性能方面问题,以及实际开发的需求的考量,不推荐使用,推荐使用textContent获取文本内容。

var text = dom.textContent;
Copy after login
<p>如果你的项目还需要兼容IE8浏览器,则使用下面的代码:

var text = dom.textContent || dom.innerText;
Copy after login
<p>四、三言两语的结语

<p>没想到innerText包含的细节这么多。innerHTML是高频使用属性,没想到原本以为相对应也会高频使用的innerText居然这么有故事,地位被textContent取代了,就像小说里的故事一样,总是出乎意料。

<p>另外,如果你要在一个DOM元素中改变文字内容,推荐使用textContent,而不是innerHTML,性能会更高一点。

<p>好了,就说这么多,一个小小的研究,希望能够对大家的学习有所帮助。

<p>原文地址:https://www.zhangxinxu.com/wordpress/?p=8941

<p>本文来自 js教程 栏目,欢迎学习!

The above is the detailed content of Difference between innerText and textContent. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

JavaScript and WebSocket: Building an efficient real-time image processing system JavaScript and WebSocket: Building an efficient real-time image processing system Dec 17, 2023 am 08:41 AM

JavaScript is a programming language widely used in web development, while WebSocket is a network protocol used for real-time communication. Combining the powerful functions of the two, we can create an efficient real-time image processing system. This article will introduce how to implement this system using JavaScript and WebSocket, and provide specific code examples. First, we need to clarify the requirements and goals of the real-time image processing system. Suppose we have a camera device that can collect real-time image data

See all articles