프로그래밍 프로세스 중에 드롭 다운 목록 상자의 값은 옵션의 값에서 종종 얻어 지지만 페이지에 값이 표시되는 경우 옵션> "ShowText"가 있습니다. ? 이 방법은 매우 간단합니다. 특정 코드는 다음과 같습니다.
다음과 같이 코드 코드를 복사하십시오.
<script type = "text/javaScript">
함수 A (Object) {
경고 (객체);
}
</스크립트>
<!-디스플레이 값을 가져옵니다->
<onchange = "a (this.options [this.selectIndIndex] .innerText);">
<옵션 값 = "value-a"> text-a </옵션>
<옵션 값 = "value-b"> text-b </옵션>
</선택>
<!-값의 가치를 얻으십시오
<onchange = "a (this.options [this.selectididex]. value);">
<옵션 값 = "value-c"> text-c </옵션>
<옵션 값 = "value-d"> text-d </옵션>
</선택>
함수 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">-선택-</옵션>
<옵션 값 = "0"> 베이징 </옵션>
<옵션 값 = "1"> 상하이 </옵션>
<옵션 값 = "2"> Wuhan </옵션>
</선택>