如何选择值选项示例之一:<option value =“27”> Simulation and Skills </option>

时间:2017-05-11 20:19:13

标签: javascript html

如何选择值选项示例之一:自动选择模拟和技能。请帮忙......

 <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);"/>

2 个答案:

答案 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>