recupero dati dal form

casoumano

Nuovo Utente
10 Gen 2005
1
0
0
ciao!

ho un problema:

ho creato una form (inserisci nome, inserisci cognome, ecc ecc..) e alla fine, oltre al pulsante "invia" ho inserito il pulsante "riepilogo". l'idea sarebbe, cliccando riepilogo, far aprire una finestra che riassuma tutti i dati inseriti senza però inviarli!!

come faccio??

ho fatto una prova con questo codice ma nn viene

lo so che sono un caso umano, ma vi prego! aiutatemi!!

<!--
<html>
<head>

<script>
<!--
var fenetreNote,texte;
function valide(form) {
texte="<html><head><title>Form </title></head><body>"
texte+="Question 1 : " + document.form.q1.value + "<BR>"
texte+="Question 2 : " + document.form.q2.value + "<BR>"
texte+="Question 3 : " + document.form.q3.value + "<BR>"
texte+="Question 4 : " + document.form.q4.value + "<BR>"
texte+="</body></html>"
fenetreNote=window.open("","",
"status=yes, toolbar=yes, menubar=yes, width=300, height=200, top=20, left=20");
fenetreNote.document.write(texte);
}
// -->
</script>


</head>

<body>

<FORM name="form">
Question 1 : <INPUT TYPE="text" NAME="q1"><BR>
Question 2 : <INPUT TYPE="text" NAME="q2"><BR>
Question 3 : <INPUT TYPE="text" NAME="q3"><BR>
Question 4 : <INPUT TYPE="text" NAME="q4"><BR>
<INPUT TYPE="button" VALUE="Confirmer" onclick="valide(form)">
</FORM>

</body>
</html>
-->
 

Discussioni simili