Im folgenden Script wird ein vorgegebener Wert überprüft.
Das alles klappt auch alles jedoch brauch ich ein weiter alert wenn der maximalwert erreicht ist. Wer kann mir bitte helfen:
<script type="text/javascript">
<!--
hoechstZahl=10;
function pruefe(frm){
aepfel=0;
for (var i=1;i<4;i++){
aepfel+=frm['aepfel'+i].value-0;
}
if(aepfel>hoechstZahl)alert('Du darfst maximal '+hoechstZahl+' Apfel bestellen!');
else{
uebrig=hoechstZahl-aepfel;
frm.gesamt.value=uebrig;
alert('Du darfst noch '+uebrig+' Äpfel bestellen!');
}
}
//-->
</script>
</head>
<body>
<form name="form1" action="#">
Rote Äpfel <input name="aepfel1"><br>
Grüne Äpfel <input name="aepfel2"><br>
Gelbe Äpfel <input name="aepfel3"><br>
<input name="gesamt" value="10"><br>
<input type="button" value="click" onclick="pruefe(this.form)">
</form>
Das alles klappt auch alles jedoch brauch ich ein weiter alert wenn der maximalwert erreicht ist. Wer kann mir bitte helfen:
<script type="text/javascript">
<!--
hoechstZahl=10;
function pruefe(frm){
aepfel=0;
for (var i=1;i<4;i++){
aepfel+=frm['aepfel'+i].value-0;
}
if(aepfel>hoechstZahl)alert('Du darfst maximal '+hoechstZahl+' Apfel bestellen!');
else{
uebrig=hoechstZahl-aepfel;
frm.gesamt.value=uebrig;
alert('Du darfst noch '+uebrig+' Äpfel bestellen!');
}
}
//-->
</script>
</head>
<body>
<form name="form1" action="#">
Rote Äpfel <input name="aepfel1"><br>
Grüne Äpfel <input name="aepfel2"><br>
Gelbe Äpfel <input name="aepfel3"><br>
<input name="gesamt" value="10"><br>
<input type="button" value="click" onclick="pruefe(this.form)">
</form>
Kommentar