Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<form name="form1">
<input type="text" name="anzahl1" onkeyup="machepreis1()" value="1" />
<span id="preis1">25</span> Euro
</form>
<script language="JavaScript">
function machepreis1() {
var einzelpreis1 = 25;
var gesamtpreis1 = 0;
var num1 = parseInt(document.form1.anzahl1.value);
if (num1 > 1) {
gesamtpreis1 = einzelpreis1 * anzahl1;
document.getElementById('preis1').innerText = gesamtpreis1;
}
}
</script>
Original von Dawen
Hi,
deine Beispiel macht leider in meinem Falle nichts, trotzdem danke für den Denkanstoss.
<form name="form1">
<input type="text" name="anzahl1" onkeyup="machepreis1()" value="1" />
<span id="preis1">---</span> Euro
</form>
<script type="text/javascript">
function machepreis1() {
var einzelpreis1 = 25;
var gesamtpreis1 = 0;
var num1 = parseInt(document.form1.anzahl1.value);
if (num1 > 0) {
gesamtpreis1 = einzelpreis1 * num1;
document.getElementById('preis1').innerHTML = gesamtpreis1;
} else {
document.getElementById('preis1').innerHTML = 0;
}
}
// Initiales Laden
machepreis1();
</script>