web-dev-qa-db-ja.com

JavaScriptを介して<select>で現在選択されている<option>を取得するにはどうすればよいですか?

JavaScriptを介して<option>要素の現在 selected <select>要素を取得するにはどうすればよいですか?

54
Paul D. Waite

これはあなたのためにそれを行います:

var yourSelect = document.getElementById( "your-select-id" );
alert( yourSelect.options[ yourSelect.selectedIndex ].value )
94
Pat

selectオブジェクトの .selectedIndex にはインデックスがあります。それを使用して.options配列にインデックスを付けることができます。

18
Amber
var payeeCountry = document.getElementById( "payeeCountry" );
alert( payeeCountry.options[ yourSelect.selectedIndex ].value );
4
Ir Calif

selectedOptionsプロパティの使用:

var yourSelect = document.getElementById("your-select-id");
alert(yourSelect.selectedOptions[0].value);

It works Internet Explorerを除くすべてのブラウザーで。

1
Finesse