0
<select id="selectBox">
  <option value="2"> two </option>
  <option value="4"> four</option>
  <option value="6"> six </option>
</select>

私は値4を持っていますがselectBox、JavaScriptを使用して値4で選択する方法を教えてください。

4

4 に答える 4

3
document.getElementById("selectBox").value=4;​

-- デモを見る --

于 2012-10-31T11:22:57.000 に答える
1

このようにすることもできます

 <option value="4" selected="selected"> four</option>

デフォルトでは、値 4 が選択されます

于 2012-10-31T11:29:09.103 に答える
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>
于 2012-10-31T11:46:20.303 に答える
0

Jquery を使用している場合は、javascript を使用しながらコーディングを行うことができます。最初にそれを選択
<option value="4"> four</option>する必要があります:$("#selectBox option[value='4']") 次に、selected を true に変更する必要があります。コードは次のとおりです。

$("#selectBox option[value='4']").attr('selected', true);

于 2012-10-31T12:17:39.663 に答える