Home > Web Front-end > JS Tutorial > body text

Two ways to get and set HTML or TEXT content with jQuery_jquery

WBOY
Release: 2016-05-16 16:46:57
Original
1170 people have browsed it

jQuery provides two APIs that can be used directly to add content to elements.

html()
text()

where html() is to add html content to the specified element
text() is to add text content to the specified element
The difference between the two is that the content in text is plain text and will not be parsed into html

If you want to operate on the following html code

Copy Code The code is as follows:





Use html()
Copy code The code is as follows:

$(' p').html('Hello World, I am a

element.');


Page effect For

Hello World, I am a

element.

If using text()

Copy code The code is as follows:

$('p').text('Hello World, I am a

element.');


The page effect is

Hello World, I am a

element.

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!