Home  >  Article  >  Web Front-end  >  How to change the value of p in jquery

How to change the value of p in jquery

藏色散人
藏色散人Original
2021-12-01 11:37:512950browse

How to change the value of p in jquery: 1. Create a new html file and use the p element to create a line of text; 2. Create a button button and bind the onclick click event; 3. Use the text() method to obtain The content of the p tag; 4. Use the text() method to reassign the p tag.

How to change the value of p in jquery

The operating environment of this article: windows7 system, jquery-2.1.4 version, DELL G3 computer

jquery How to change the value of p ?

jQuery obtains and modifies the value in the P tag

Create a new html file named test.html to explain how jQuery obtains and modifies it The value within the P tag.

How to change the value of p in jquery

In the test.html file, use the p element to create a line of text with the text "This is the content of the test".

How to change the value of p in jquery

In the test.html file, add an id attribute to the p tag, which will be used to obtain the p tag object below.

How to change the value of p in jquery

In the test.html file, create a button button, bind the onclick click event to the button, and when the button is clicked, execute the myfunc() function.

How to change the value of p in jquery

In the js tag, create the myfunc() function. Within the function, obtain the p tag object through the id, use the text() method to obtain the content of the p tag, and then use The text() method reassigns the p tag.

How to change the value of p in jquery

Open the test.html file in the browser and click the button to see the effect.

How to change the value of p in jquery

Recommended learning: "jquery video tutorial"

The above is the detailed content of How to change the value of p in jquery. 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