Während des Programmierungsprozesses wird der Wert des Listenfelds für Drop -Down -Listen häufig aus der Option der Wertsteuerung erhalten, aber es gibt auch, dass auf der Seite ein Wert angezeigt wird, z. B. Option> "vorhandene", wie sollen wir ihn erhalten ? Die Methode ist sehr einfach, der spezifische Code lautet wie folgt:
Kopieren Sie den Code -Code wie folgt:
<script type = "text/javaScript">
Funktion a (Objekt) {
Alarm (Objekt);
}
</script>
<!-Holen Sie sich den Anzeigewert->
<select onchange = "a (this.options [this.selectIndex] .InNerText);">
<Option value = "value-a"> text-a </option>
<Option Value = "Value-B"> Text-B </Option>
</select>
<!-Holen Sie sich den Wert des Wertes->
<select onchange = "a (this.options [this.selectidIdEx]. Wert);">
<Option Value = "Value-C"> Text-C </Option>
<Option Value = "Value-D"> Text-D </Option>
</select>
Funktion isselect (selectPress) {
// var select = document.getElementById ("mySelect").
var selectValue = selectPress.options [selectPress.SelectExdex].
var selectValue2 = selectPress.options [selectPress.SelectedIndex] .InNerText;
// alarm (selectValue);
// alarm (selectValue2);
If (selectValue == "-1") {{{{{{{{{{{
ALERT ("Bitte wählen Sie die Stadt aus, die Formulareinreichung des Formulars wird abgelehnt!")
Zurückkehren;
}
anders {
document.getElementById ('Form1').
}
}
<select onchange = "isselect (this);" id = "mySelect">
<Option Value = "-1">-Bitte wählen Sie </Option>
<Option Value = "0"> Peking </Option>
<Option Value = "1"> Shanghai </Option>
<Option Value = "2"> Wuhan </Option>
</select>