選択ボックスがあり、選択したオプションの値を取得しようとしています。エラーProperty 'value' of object # is not a function が発生します
HTML:
<select id="my_SiteUsers" style="width:350px;" onchange="RefreshGroupLists()">
<option
value="i:0#.w|itun\akondruss_fg">Alex</option>
<option value="i:0#.w|itun\allepage_fg">Alex</option>
</select>
JS:
var e = document.getElementById("my_SiteUsers");
var user = e.value();
alert(user);