Hallo liebe CH-Gemeinde, ich hab mal wieder ne Frage - diesmal zum Thema JavaScript & HTML.
Ich bin im Begriff einen Stundenplangenerator zu schreiben, und hab hier mal ein einfaches Beispiel meines Scriptes:
<html>
<head>
<title>test</title>
<script type="text/javascript">
function TextAendern () {
document.getElementById("z1").firstChild.nodeValue = document.Formular.1zeit.value;
}
</script>
</head>
<body>
<br><br><br>
<table align="center" border="1" cellspacing="1" cellpadding="1">
<tr>
<td align="center" width="150"><p id="z1">Zeit 1</p></td>
</tr>
</table>
<br><br><br><br>
<form name="Formular" action="" onsubmit="TextAendern(); return false">
<table align="center" border="1" cellspacing="1" cellpadding="1">
<tr>
<td align="center" width="150"><input type="text" size="20" name="1zeit"></td>
</tr>
</table>
<input type="submit" value=" OK ">
</form>
</body>
</html>
kann mir da jemand weiterhelfen und mir vllt nen tip geben, wo der fehler ist?
Ringmaster Gast |