プログラミングプロセス中、ドロップダウンリストボックスの値はオプションの値から取得されることがよくありますが、ページに表示されている値、たとえばオプション>「showtext」などがあります。 ?方法は非常に単純で、特定のコードは次のとおりです。
次のようにコードコードをコピーします。
<script type = "text/javascript">
関数a(オブジェクト){
アラート(オブジェクト);
}
</script>
<! - 表示value->を取得します
<select onchange = "a(this.options [this.selectindindex] .innertext);">
<オプション値= "value-a"> text-a </option>
<option value = "value-b"> text-b </option>
</select>
<! - value->の値を取得します
<select onchange = "a(this.options [this.selectididex]。value);">
<オプション値= "value-c"> text-c </option>
<オプション値= "value-d"> text-d </option>
</select>
function isselect(selectpress){
// var select = document.getElementById( "mySeLect")。
var selectvalue = selectpress.options [selectpress.selectexdex]
var selectValue2 = selectPress.options [SelectPress.SelectedIndex] .innertext;
// alert(selectValue);
// alert(SelectValue2);
if(selectValue == "-1"){{
アラート(「都市を選択してください、フォームのフォームの提出が拒否されます!」)
戻る;
}
それ以外 {
document.getElementByid( 'form1');
}
}
<OnChange = "IssElect(this);" "mySelect">
<オプション値= "-1"> - </option>を選択してください
<オプション値= "0"> beijing </option>
<オプション値= "1">上海</option>
<オプション値= "2"> wuhan </option>
</select>