JavaScriptを介して<option>
要素の現在 selected <select>
要素を取得するにはどうすればよいですか?
これはあなたのためにそれを行います:
var yourSelect = document.getElementById( "your-select-id" );
alert( yourSelect.options[ yourSelect.selectedIndex ].value )
select
オブジェクトの .selectedIndex
にはインデックスがあります。それを使用して.options
配列にインデックスを付けることができます。
var payeeCountry = document.getElementById( "payeeCountry" );
alert( payeeCountry.options[ yourSelect.selectedIndex ].value );
selectedOptions
プロパティの使用:
var yourSelect = document.getElementById("your-select-id");
alert(yourSelect.selectedOptions[0].value);
It works Internet Explorerを除くすべてのブラウザーで。