我的select
选项没有value
属性
<select id='1'>
<option>Label1</option>
<option>Label2</option>
</select>
我知道如何根据价值设定:
$("#1").val("whatever");
如何通过innerHTML设置选项?
我试过
$("#1").html("Label1");
答案 0 :(得分:3)
您仍然可以使用.val()
:
$("#1").val("Label2");
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<select id='1'>
<option>Label1</option>
<option>Label2</option>
</select>