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

What is the use of jQuery html() method

青灯夜游
Release: 2021-05-06 16:49:39
Original
4635 people have browsed it

html() method is used to return or set the content of the selected element: 1. If no parameters are set, return the current content of the selected element, syntax "$(selector).html()"; 2 . If parameters are set, the content of all matching elements will be overwritten, with the syntax "$(selector).html(content value)".

What is the use of jQuery html() method

The operating environment of this tutorial: windows7 system, jquery1.10.2 version, Dell G3 computer.

jQuery html() method

html() method returns or sets the content (inner HTML) of the selected element.

  • Return element content

When using this method to return a value, it returns the first matching element Content.

Syntax

$(selector).html()
Copy after login

Example:




	
		
		
		
	

这是一个 段落

Copy after login

What is the use of jQuery html() method

  • ##Set element content

When you use this method to set a value, it overwrites the content of all matching elements.

Syntax

$(selector).html(content)
Copy after login

content: Specifies the new content of the selected element, which can be omitted. This parameter can contain HTML tags.

Example:




	
		
		
		
	

这是一个段落。

这是另一个段落。

Copy after login

What is the use of jQuery html() method

Related video tutorial recommendation:

jQuery tutorial (video)

The above is the detailed content of What is the use of jQuery html() method. For more information, please follow other related articles on the PHP Chinese website!

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 [email protected]
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!