2024年11月05日 建站教程
html怎样动态设置select默认选中项,web建站小编个大家详细介绍一下!
select代码
<select name="sel"> <option value="HTML5">HTML5</option> <option value="CSS3">CSS3</option> <option value="VUE">VUE</option> <option value="PHP">PHP</option> </select>
js设置默认值
var sel= "VUE"; document.getElementsByName("sel")[0].value=sel;
本文链接:http://so.lmcjl.com/news/17048/