한국어
<!-- 把报电影观看在<body> 地址中 --> <!-- http://www.downcodes.com --> <!-- bbs http://www.downcodes.com/bbs- - > <SCRIPT LANGUAGE="JavaScript"> <!-- 시작 var arrItems1 = new Array(); var arrItemsGrp1 = 새로운 배열(); arrItems1[3] = "트럭"; arrItemsGrp1[3] = 1; arrItems1[4] = "기차"; arrItemsGrp1[4] = 1; arrItems1[5] = "자동차"; arrItemsGrp1[5] = 1; arrItems1[6] = "보트"; arrItemsGrp1[6] = 2; arrItems1[7] = "잠수함"; arrItemsGrp1[7] = 2; arrItems1[0] = "비행기"; arrItemsGrp1[0] = 3; arrItems1[1] = "초경량"; arrItemsGrp1[1] = 3; arrItems1[2] = "글라이더"; arrItemsGrp1[2] = 3; var arrItems2 = 새로운 배열(); var arrItemsGrp2 = 새로운 배열(); arrItems2[21] = "747"; arrItemsGrp2[21] = 0 arrItems2[22] = "세스나"; arrItemsGrp2[22] = 0 arrItems2[31] = "콜브 전단지"; arrItemsGrp2[31] = 1 arrItems2[34] = "Kitfox"; arrItemsGrp2[34] = 1 arrItems2[35] = "슈비처 글라이더"; arrItemsGrp2[35] = 2 arrItems2[99] = "쉐보레 말리부"; arrItemsGrp2[99] = 5 arrItems2[100] = "링컨 LS"; arrItemsGrp2[100] = 5 arrItems2[57] = "BMW Z3"; arrItemsGrp2[57] = 5 arrItems2[101] = "F-150"; arrItemsGrp2[101] = 3 arrItems2[102] = "타호"; arrItemsGrp2[102] = 3 arrItems2[103] = "화물 열차"; arrItemsGrp2[103] = 4 arrItems2[104] = "여객 열차"; arrItemsGrp2[104] = 4 arrItems2[105] = "유조선"; arrItemsGrp2[105] = 6 arrItems2[106] = "낚시배"; arrItemsGrp2[106] = 6 arrItems2[200] = "로스앤젤레스 클래스"; arrItemsGrp2[200] = 7 arrItems2[201] = "킬로 클래스"; arrItemsGrp2[201] = 7 arrItems2[203] = "바다늑대 클래스"; arrItemsGrp2[203] = 7 function selectChange(control, controlToPopulate, ItemArray, GroupArray) { var myEle ; 변수 x ; // (var q=controlToPopulate.options.length;q>=0;q--) controlToPopulate.options[q]=null;에 대한 선택 항목의 두 번째 드롭다운 상자를 비웁니다. if (control.name == "firstChoice") { // 선택 항목의 세 번째 드롭다운 상자를 비웁니다. for (var q=myChoices.thirdChoice.options.length;q>=0;q--) myChoices.thirdChoice.options [q] = 널; } // 기본 선택 항목 추가 - 값이 없는 경우 myEle = document.createElement("option") ; myEle.value = 0 ; myEle.text = "[SELECT]" ; controlToPopulate.add(myEle) ; for ( x = 0 ; x < ItemArray.length ; x++ ) { if ( GroupArray[x] == control.value ) { myEle = document.createElement("option") ; myEle.value = x ; myEle.text = ItemArray[x] ; controlToPopulate.add(myEle) ; } } } // 종료 --> </script> <form name=myChoices> <table align="center"> <tr> <td> <SELECT id=firstChoice name=firstChoice onchange="selectChange(this, myChoices. secondChoice, arrItems1, arrItemsGrp1);"> <옵션 값=0 SELECTED>[SELECT]</option> <옵션 값=1>육지</option> <옵션 값=2>바다</option> <옵션 값=3 >Air</option> </SELECT> </TD><TD> <SELECT id=secondChoice name=secondChoice onchange="selectChange(this, myChoices.thirdChoice, arrItems2, arrItemsGrp2);"> </SELECT> <SELECT id =thirdChoice 이름=thirdChoice> </SELECT> </TD> </TR> </TABLE> </form>