Zitat von
omata:
Neuer Versuch...
Code:
<form action="addbook.php" method="post" name="bookdata">
:
<script type="text/javascript">
<!--
document.write(
'<input type="button" value=" Datensatz hinzufügen " onclick="ValidateForm();" />'
);
-->
</script>
<noscript>
<div style="display:inline">
<input type="submit" value=" Datensatz hinzufügen " />
</div>
</noscript>
<input type="reset" value=" Felder zurücksetzen " />
:
</form>
Code:
function ValidateForm() {
/* Alle Pflichtfelder auf Inhalt prüfen */
if ( (document.bookdata.isbn13.value == "")
|| (document.bookdata.title.value == "")) {
:
/* Abschicken des Formulars verhindern */
}
else {
:
:
/* Formular absenden */
document.bookdata.submit;
}
}
Danke
Ich wusste garnicht das man so mit Javascript arbeiten kann (ich bin neu in JavaScript)