Home>Article>Web Front-end> What is the use of jQuery html() method

What is the use of jQuery html() method

青灯夜游
青灯夜游 Original
2021-05-06 16:42:09 4735browse

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()

Example:

      

这是一个 段落

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)

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

Example:

      

这是一个段落。

这是另一个段落。

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!

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