Prova al volo:
Mi dice però "impossibile trovare membro" alla riga dell'else della funzione javascript....cosa sto sbagliando?codice:<html> <head> <title>Prova Max</title> <script language="javascript"> function showHide() { if (document.scelteTot.scelta1.options[document.scelteTot.scelta1.selectedIndex].value == 2) { alert("1"); document.scelteTot.scelta2.style = 'display: block;'; } else { alert("0"); document.scelteTot.scelta2.style = 'display: none;'; } } </script> </head> <body> <form name="scelteTot"> <select name="scelta1" onchange="showHide();"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> <select name="scelta2" STYLE="display: none;"> <option value="2_1">2_1</option> <option value="2_2">2_2</option> <option value="2_3">2_3</option> </select> </form> </body> </html>

Rispondi quotando