Web_spider
Neues Mitglied
Hi all.
So ich habe vor eine Art Adressbank im Internet für meine Homepage zu schreiben, und habe hier einen Anfang, aber ich habe dass problem, dass bei meinem Quellcode etwas nicht stimmt. Wenn ich den Button weiter klicke soll sich zurueck enablen, aber das klappt net. Hier des Quellcode:
Hoffe auf Hilfe
mfg web_spider :-D
So ich habe vor eine Art Adressbank im Internet für meine Homepage zu schreiben, und habe hier einen Anfang, aber ich habe dass problem, dass bei meinem Quellcode etwas nicht stimmt. Wenn ich den Button weiter klicke soll sich zurueck enablen, aber das klappt net. Hier des Quellcode:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Prokontakt v.1.0</title>
<script language="javascript">
function enablen()
{
document.abschicken.zurueck.disabled='false';
}
</script>
<style type="text/css">
td.formular
{
background-color: #E0E0E0;
}
a.link.wahl
{
text-decoration: none;
color: black;
}
a.hover.wahl
{
text-decoration: none;
color: black;
}
a:visited.wahl
{
text-decoration: none;
color: black;
}
</style>
</head>
<body>
<form name="abschicken" action="kontakteintragen.php" target="frame001" method="post">
<table>
<tr>
<td class="formular">Name: </td>
<td><input type="text" size="30" name="name" id="Name"></td>
</tr>
<tr>
<td class="formular">Nachname: </td>
<td><input type="text" size="30" name="nachname" id="nachname"></td>
</tr>
<tr>
<td class="formular">Nickname: </td>
<td><input type="text" size="30" name="nickname" id="nickname"></td>
</tr>
<tr>
<td class="formular">E-mail: </td>
<td><input type="text" size="30" name="email" id="email"></td>
</tr>
<tr>
<td class="formular">Geburtsdatum: </td>
<td><input type="text" size="30" name="geburtsdatum" id="geburtsdatum"></td>
</tr>
<tr>
<td class="formular">Handy: </td>
<td><input type="text" size="30" name="handy" id="handy"></td>
</tr>
<tr>
<td class="formular">Land: </td>
<td><input type="text" size="30" name="land" id="land"></td>
</tr>
<tr>
<td class="formular">Stadt: </td>
<td><input type="text" size="30" name="stadt" id="stadt"></td>
</tr>
</table>
<button name="weiter1" id="weiter1" style="cursor: hand; border: 2px outset #ddd; width: 60px; height: 20px; text-align: center; background-color: yellow;" onmouseover="this.style.border='2px inset #ddd'; this.style.margin='1px 0 0 1px';" onmouseout="this.style.border='2px outset #ddd'; this.style.margin='0 1px 1px 0';" onclick="javascript: wahl.style.display='block'; this.disabled='true'; abschicken.name.disabled='true'; abschicken.nachname.disabled='true'; abschicken.nickname.disabled='true'; abschicken.email.disabled='true'; abschicken.geburtsdatum.disabled='true'; abschicken.handy.disabled='true'; abschicken.land.disabled='true'; abschicken.stadt.disabled='true'; enablen(); abschicken.backall1.disabled='true';">Weiter</button>
<button disabled name="zurueck" id="zurueck" style="cursor: hand; border: 2px outset #ddd; width: 60px; height: 20px; text-align: center; background-color: yellow;" onmouseover="this.style.border='2px inset #ddd'; this.style.margin='1px 0 0 1px';" onmouseout="this.style.border='2px outset #ddd'; this.style.margin='0 1px 1px 0';" onclick=" wahl.style.display='none'; this.disabled='true'; abschicken.name.disabled='false'; abschicken.nachname.disabled='false'; abschicken.nickname.disabled='false'; abschicken.email.disabled='false'; abschicken.geburtsdatum.disabled='false'; abschicken.handy.disabled='false'; abschicken.land.disabled='false'; abschicken.stadt.disabled='false'; abschicken.weiter1.disabled='false'; abschicken.backall1.disabled='false';">Zurück</button>
<button name="backall1" id="backall1" style="cursor: hand; border: 2px outset #ddd; width: 60px; height: 20px; text-align: center; background-color: yellow;" onmouseover="this.style.border='2px inset #ddd'; this.style.margin='1px 0 0 1px';" onmouseout="this.style.border='2px outset #ddd'; this.style.margin='0 1px 1px 0';" onclick="reset();">Reset</button>
</form>
<br><br><br>
<form action="" name="wahl" style="background-color: red; height: 100px; width: 100px;display: none;">
As tave myliu.
</form>
</body>
</html>
mfg web_spider :-D