html select 默认选中问题

html 中select 标签,有时会遇到需要设置默认的选项。

。在input 标签中是这样的

<input type="radio" name="happy" checked/>
<input type="radio" name="happy" />

在select 标签中是这样的

html  select  默认选中问题
<select name="k" >
<option value="1" >1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4" selected=“selected”>4</option>
</select>
html  select  默认选中问题

 

html select 默认选中问题,布布扣,bubuko.com

html select 默认选中问题

上一篇:【HTML】Intermediate4:Tables:rowspan and colspan


下一篇:Web应用程序设计十个建议