value = 'option2'; // 将默认值设置为"Option 2" 5. 或者,将默认选项设置为selected属性为true 你也可以在HTML中直接设置某个<option>元素的selected属性为true,或者在JavaScript中动态设置。 在HTML中设置: html <select id="mySelect"> <option value="option1">Option 1</...
可以在HTML中设置select标签的selected属性为true,或者在JavaScript中设置select对象的selectedIndex属性为默认选项的索引值。例如: HTML: <select name="fruit"> <option value="apple">苹果</option> <option value="banana" selected>香蕉</option> <!-- 设置默认选项为香蕉 --> <option value="orange">橙子</...
首先看下你要把第几条设置为默认;<option> 的id规律化写成 id="option"+index;的形式;第几条就...
<select> <option <% if(staff.getSection()==1){ out.print("selected=''")}%>>1</option> <option <% if(staff.getSection()==2){ out.print("selected=''")}%>>2</option> </select>