如何选择值选项示例之一:自动选择模拟和技能。请帮忙......
<select name="cboArea" id="cboArea" multiple="multiple" onclick="selectOrSelect();" onkeydown="selectOrSelect();" onkeyup="selectOrSelect()" onkeypress="selectOrSelect()">
<!--<OPTION VALUE=''>All</OPTION>-->
<OPTION VALUE='1'>1st Floor</OPTION>
<OPTION VALUE='2'>CEC Building</OPTION>
</select>
</TD>
<td>All</td>
<td><input type="checkbox" name="radAllAreas" id="radAllAreas" onclick="selectAllAreas(this.checked);"/>
答案 0 :(得分:0)
如果您要显示默认值,则可以执行此操作:
<OPTION VALUE='1' selected>1st Floor</OPTION>
答案 1 :(得分:0)
使用jQuery
:
$("select#cboArea").val("2");
或
$("select#cboArea option[value='2']").prop("selected", true);
如果您想使用jQuery
,请在上面的代码中添加以上行之一而不是注释:
$(function(){
//put your jQuery code here.
});
Pure js
:
document.querySelector("select#cboArea").value="2";
如果要使用vanilla js
,请在文档末尾的script
标记内添加以上行。
或在html
中:
<option value='2' selected>CEC Building</option>