Ciao a tutti!
Dunque.
Per le caselle di testo, se devo recuperare un valore, basta dire:
document.nomeform.nomeinput.value
Ma per i select?
Cioè se scelgo un opzione in un select, come faccio a recuperare il valore?
Ciao a tutti!
Dunque.
Per le caselle di testo, se devo recuperare un valore, basta dire:
document.nomeform.nomeinput.value
Ma per i select?
Cioè se scelgo un opzione in un select, come faccio a recuperare il valore?
document.nomeform.nomeselect.options[document.nomeform.nomeselect.selectedIndex].value;
Ciaooo!!!!!
mmmmm...
non funziona...Codice HTML:<script> function refresh(){ template=document.modulo.template.options[document.modulo.template.selectedIndex].value alert("Template scelto: "+template) } </script> <form name="modulo"> <select name="template" onchange="refresh()"><option>1</option><option>2</option></select> </form>
Così al volo, dovresti risolvere con refresh(this) e la funzione:
function refresh(sel){
template=sel.options[sel.selectedIndex].value
alert("Template scelto: "+template)
}
Ciaoooo!!!!!
Niente...
Codice HTML:<script language="Javascript" type="text/javascript"> function refresh(){ template=document.modulo.template.options[document.modulo.template.selectedIndex].value alert("Template scelto: "+template) } </script> <form name="modulo"> <select name="template" onchange="refresh()"><option value="1">1</option><option value="2">2</option></select> </form>
Mattia vi manda a FunCool - Matriz - Directory Gogol - Sfondo rosso per la Birmania
«Tu mi dai fastidio perché ti credi tanto un Dio!» «Bè, dovrò pur prendere un modello a cui ispirarmi, no?» Woody Allen
Thanks!