JavaScript 控制 html.select的显示
发布网友
发布时间:2022-04-30 09:48
我来回答
共3个回答
热心网友
时间:2022-04-20 22:48
<select name="select1" onchange="changelocation();">
<option value=11>11.xxx</option>
<option value=22 selected>22.yyy</option>
<option value=33>33.zzz</option>
</select>
onchange="changelocation()"
是要你操作SELECT后他才起效果。
如果 要页面默认打开就显示2的个话。那么就直接指定2为默认显示项
就是在 <option value=22 selected>22.yyy</option>
加上selected
热心网友
时间:2022-04-21 00:06
将表单代码改为:
<form name="form1" id="form1">
<select name="select1" onchange="changelocation();">
<option value=11>11.xxx</option>
<option value=22 selected="selected" >22.yyy</option>
<option value=33>33.zzz</option>
</select>
</form>
热心网友
时间:2022-04-21 01:41
document.form1.select1.selectedIndex = 1;
或者
<option value=11>11.xxx</option>
<option value=22 selected=selected>22.yyy</option>
<option value=33>33.zzz</option>