Home  >  Article  >  Web Front-end  >  Two ways to get and set HTML or TEXT content with jQuery_jquery

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

WBOY
WBOYOriginal
2016-05-16 16:46:571171browse

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.

Statement:
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