<select id="selectBox">
<option value="2"> two </option>
<option value="4"> four</option>
<option value="6"> six </option>
</select>
我有价值4,现在如何使用javascript将值{4}选为selectBox
?
答案 0 :(得分:3)
答案 1 :(得分:1)
你也可以这样做
<option value="4" selected="selected"> four</option>
默认情况下,它会被选中vale 4
答案 2 :(得分:0)
你在找这个吗?
<script type="text/javascript">
function fnc(myid,other1,other2)
{
document.getElementById(myid).text=myid+" is selected";
document.getElementById(other1).text=other1;
document.getElementById(other2).text=other2;
}
</script>
<select id="selectBox">
<option value="2" id="two" onclick="fnc(this.id,'four','six')"> two </option>
<option value="4" id="four" onclick="fnc(this.id,'two','six')"> four</option>
<option value="6" id="six" onclick="fnc(this.id,'two','four')"> six </option>
</select>
答案 3 :(得分:0)
如果你正在使用Jquery,你可以在javascript worrks时进行编码。首先,您必须 选择
<option value="4"> four</option>
即$("#selectBox option[value='4']")
,然后您必须将所选内容更改为true。这是代码:
$("#selectBox option[value='4']").attr('selected', true);