Home  >  Article  >  Web Front-end  >  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

WBOY
WBOYOriginal
2016-05-16 17:26:141543browse

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="";
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