Download-Module
5 years ago
Mit welchem Download-Modul kann ich Javascript auf meiner homepage ausführen, inklusive den Additionszähler für 8 Zahlen ?
Z.B.
<script>
// Zahlen autom. addieren
function plus() {
var WertA = document.Form5.zahl1.value;
var WertB = document.Form5.zahl2.value;
var WertC = document.Form5.zahl3.value;
var WertD = document.Form5.zahl4.value;
var WertE = document.Form5.zahl5.value;
var WertF = document.Form5.zahl6.value;
var WertG = document.Form5.zahl7.value;
var WertH = document.Form5.zahl8.value;
document.Form5.ausgabe.value=WertA*1+WertB*1+WertC*1+WertD*1+WertE*1+WertF*1+WertG*1+WertH*1;
}
</script>
<form name="Form5">
A <input type="text" name="zahl1" size="3" onKeyUp="zaehler();"<br>
B <input type="text" name="zahl2" size="3" onKeyUp="zaehler();"<br>
C <input type="text" name="zahl3" size="3" onKeyUp="zaehler();"<br>
D <input type="text" name="zahl4" size="3" onKeyUp="zaehler();“<br>
E <input type="text" name="zahl5" size="3" onKeyUp="zaehler();"<br>
F <input type="text" name="zahl6" size="3" onKeyUp="zaehler();"<br>
G <input type="text" name="zahl7" size="3" onKeyUp="zaehler();"<br>
H <input type="text" name="zahl8" size="3" onKeyUp="zaehler();"<br>
Summe: <input type="text" name="ausgabe" size="3"
</form>
237
0
4
This could help you too
4 years ago
5703
0
2
1750
0
3
633
0
11
950
0
5
6 years ago
242
0
1
You might also be interested in
Request purchasing advice
Fill out our online contact form quickly and easily so that we can advise you personally in a timely manner.
View offers
Informieren Sie sich über unsere aktuellen Website-Angebote.