Home  >  Article  >  Web Front-end  >  js method to add options to selected_javascript skills

js method to add options to selected_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:00:411369browse

The example in this article describes the method of adding options to selected in js. Share it with everyone for your reference. The specific implementation method is as follows:

<select id="Mmonth">
<option>1</option>
</select>
<input type="button" onclick="a()" value="添加"/>
<script>
function a(){
 document.getElementById("Mmonth").options.add(new Option(1,1));
}
</script>

I hope this article will be helpful to everyone’s JavaScript programming design.

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