4 回答
TA贡献2016条经验 获得超9个赞
用selected
1 2 3 4 5 | <select> <option>a</option> <option selected="selected">b</option> <option>c</option> </select> |
如果option使用php循环输出的,那么也可以
1 2 3 4 5 | <select> <?php foreach($arr as $key => $value) { ?> <option <?php if ($_text == $value) { ?>selected="selected" <?php } ?>><?php echo $value; ?></option> <?php } ?> </select> |
TA贡献1801条经验 获得超16个赞
点击还原时重设这个下拉列表的options集合的长度即可。
<select id="members" name="members">
<option value="Mr green">Mr green</option>
<option value="Mr john">Mr john</option>
</select>
<input type="button" name="button" id="button" value="还原" onclick="restoreMembers()" />
<script language="javascript">
function restoreMembers(){
var objDrop =document.getElementById("members");
objDrop.options.length=1;
objDrop.options[0] =new Option("选择职位","");
}
</script>
- 4 回答
- 0 关注
- 1639 浏览
添加回答
举报