Hi Leute, nach langer Zeit habe ich es geschafft ein Formular zu bauen bei dem der nachfolgende Link von der Eingabe abhängig ist. Es wird eine Postleitzahl eingegeben und je nach welcher Postleitzahl man eingibt, wird man zur passenden htm Seite gelinkt. Jetzt würde ich es aber gerne unterbinden das man Buchstaben eingibt! Man soll nur Zahlen eingeben können. Wer kann mir weiterhelfen. Hier der Quelltext:
HTML
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript">
<!--
function goSite(){
if ((document.Form1.Haendlersuche.value.indexOf("4") == 0)||(document.Form1.Haendlersuche.value.indexOf("5") == 0)){
parent.fr5.location = "haendler_4u5.htm";
}else{
parent.fr5.location = "haendler_gvb.htm";
}
return false;
}
-->
</script>
</head>
<body background="i-sonstige/back-w.jpg" onLoad="document.Form1.Haendlersuche.focus();" bgcolor="#FFFFFF" text="#386F8E" vlink="#386F8E" topmargin=0 leftmargin=0 MARGINWIDTH="0" MARGINHEIGHT="0">
<form method=get name="Form1" onSubmit="return goSite()">
<table border=0 width=186 cellspacing=0 cellpadding=0>
<tr>
<td colspan=3>
[img]i-h_suche/navi-h_suche_01.gif[/img]</p></td>
</tr>
<tr>
<td colspan=3>
[img]i-h_suche/navi-h_suche_02.gif[/img]</p></td>
</tr>
<tr>
<td>
[img]i-h_suche/navi-h_suche_03.gif[/img]</p></td>
<td background="i-sonstige/back-hallblau.gif" align=center valign=middle width=82>
<input type=text name="Haendlersuche" maxlength=5 style="font-face: Tahoma; width: 40px; font-size: 10px;"></p></td>
<td>
[url='#'][img]i-h_suche/navi-h_suche_05.gif[/img][/url]</p></td>
</tr>
<tr>
<td colspan=3>
[img]i-h_suche/navi-h_suche_06.gif[/img]</p></td>
</tr>
</table>
</form>
</body>
</html>
Alles anzeigen