Versenden von E-mails
berserker
- html
0 Elya0 Elya
0 Gerhard Knabe0 berserker
Hi Leute bin Newbie hab da mal ne frage was ist hieran falsch ich möchte nämlich das der User alles ausfüllt und dann alles zu mir geschickt wird aber da funzt nicht??? bitte um Eure Hilfe!!! Danke
<html><head><title>Test</title>
<script type="text/javascript">
<!--
function CheckInput() {
for(i=0; i<document.forms[0].elements.length; ++i)
if(document.forms[0].elements[i].value == "") {
alert("Es wurden nicht alle Felder ausgefuellt!");
document.forms[0].elements[i].focus();
return false;
}
return true;
}
//-->
</script>
</head><body>
<form action="onsubmit.htm" onSubmit="return CheckInput();">
Name: <input size="30"><br>
Nick: <input size="30"><br>
Alter: <input size="30"><br>
Wohnort:<input size="30"><br>
ICQ: <input size="30"><br>
E-Mail: <input size="30"><br>
<input type="submit"></input>
<a href="mailto:Stephan_Voss_1999@web.de">Versenden</a>
<script type="text/javascript">
</form>
</body></html>
Hallo Forum,
ich empfehle nochmal die Lektüre von
http://selfhtml.teamone.de/html/formulare/definieren.htm
Stichwort "action"
dann auch
http://selfhtml.teamone.de/html/formulare/eingabe.htm#felder
zum Thema Eingabefelder type="text"
und generell die Diskussion hier im Forum zum Thema "Formulare verschicken mit "mailto:" und die Lösungsansätze hierzu, Stichwort "formmailer"
http://selfsuche.teamone.de/cgi-bin/hack.cgi?suchausdruck=Formular+mailto&case=on&lang=on&feld=alle&index_1=on&index_2=on&index_3=on&index_4=on&index_5=on&hits=100
Schöne Grüße aus Köln-Ehrenfeld,
Elya
Hallo Forum,
sorry, meinte natürlich: hallo berserker ;-)
Schöne Grüße aus Köln-Ehrenfeld,
Elya
Du mußt in der Form schreiben
<form action="mailto:Stephan_Voss_1999@web.de" onSubmit="return CheckInput();">
Die Verknüpfung am Ende der Form kannst Du dir dann sparen. Ein Klick auf die submit Schaltfläche schickt das Formular dann ab.
MfG
GK
Danke Leute für die Hilfe und wünsche EUCH allen nen schönes Wochenende!!!
Ciao