B
Blümchen
Hallo,
hmm mal eine Frage. Ich möchte ein Feld überprüfen pb da was drin steht. Das habe ich immer gedacht, dass ich das so machen muss:
So dann habe ich das Feld:
So an was kann das liegen, dass er das nicht überprüft?
Gruß Blümchen
hmm mal eine Frage. Ich möchte ein Feld überprüfen pb da was drin steht. Das habe ich immer gedacht, dass ich das so machen muss:
Code:
<script type="text/javascript">
function chkFormular () {
if (document.Formular.mailto.value == "") {
alert("Bitte Die E-Mail-Adresse fehlt!!");
document.Formular.mailto.focus();
return false;
}
if (document.Formular.message.value == "") {
alert("Die Nachricht fehlt!");
document.Formular.message.focus();
return false
}
</script>
So dann habe ich das Feld:
Code:
<th scope="col"><form name="form2" method="post" action="sendpic.php" onSubmit="return chkFormular()">
<table width="100%" align="left" cellpadding="0" cellspacing="0">
<tbody>
<tr> </tr>
</tbody>
<tbody>
<tr>
<td colspan="2" height="12"><img src="../img/navigation/info.jpg" height="12" width="128"></td>
</tr>
</tbody>
<tbody>
<tr>
<td width="1" background="../img/navigation/pixel.jpg" bgcolor="#A00608"><img src="../img/navigation/fake.gif" height="1" width="1"></td>
<td width="301" valign="top">
<table width="100%" height="10" border="0" cellpadding="4" cellspacing="2">
<tbody>
<tr>
<td width="31%"><p><strong>Empfänger</strong>:</p></td>
<td width="38%"><input name="mailto" id="kommentar22" size="25" class="chatfields" type="text"></td>
<td width="31%"><input name="sendmail" type="submit" class="chatfields" id="go23" value="Mail">
<input name="bildid" type="hidden" id="bildid" value="<?php echo $idx_bild; ?>"></td>
</tr>
<tr valign="middle">
<td height="33">
<p><strong>Nachricht:</strong></p></td>
<td height="33" colspan="2"><textarea name="message" cols="37" rows="6" wrap="VIRTUAL" class="chatfields" id="textarea2"></textarea></td>
</tr>
</tbody>
</table></td>
<td width="4"> </td>
</tr>
<tr>
<td colspan="2" background="../img/navigation/pixel.jpg" bgcolor="#A00608" height="1"><img src="../img/navigation/fake.gif" height="1" width="1"></td>
</tr>
</tbody>
</table>
</form></th>
So an was kann das liegen, dass er das nicht überprüft?
Gruß Blümchen