Home  >  Article  >  Web Front-end  >  How to modify span in javascript

How to modify span in javascript

藏色散人
藏色散人Original
2021-10-27 14:57:199382browse

How to modify span in javascript: 1. Use the span tag to create content; 2. Add an id attribute to the span tag; 3. Use the button tag to create a button; 4. Create the editspan() function; 5. Use Just assign the innerHTML attribute to the span object.

How to modify span in javascript

The operating environment of this article: windows7 system, javascript version 1.8.5, Dell G3 computer.

How to modify span in javascript?

js changes the content of the span tag:

Create a new html file, named test.html, to explain how js changes the content of the span tag.

How to modify span in javascript

In the test.html file, use the span tag to create a line of content for testing.

How to modify span in javascript

In the test.html file, add an id attribute to the span tag and set it to mytest.

How to modify span in javascript

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

How to modify span in javascript

In the js tag, create the editspan() function. Within the function, save the new content in the newcon variable, then obtain the span object through the id, and use the innerHTML attribute Assign a value to the span object to change the content of the span tag.

How to modify span in javascript

Open the test.html file in the browser to check the effect.

How to modify span in javascript

[Recommended learning: javascript basic tutorial]

The above is the detailed content of How to modify span in javascript. 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