Home > Web Front-end > JS Tutorial > js method of assigning values ​​​​to label tags and div tags_javascript skills

js method of assigning values ​​​​to label tags and div tags_javascript skills

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-05-16 17:26:14
Original
1616 people have browsed it

In html, label does not have a value attribute.
Like div and most other html elements, it has innerText and innerHTML attributes.
cannot document.getElementByID("test").value="chenhuang";
It should be the following

Copy the code The code is as follows:


document.getElementById(test).innerText="";

document.getElementById('test' ).innerHTML="";
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 admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template