xxnemesisx49
Neues Mitglied
hallo, ich habe 2 wetre mit 2 ver. javascripten berechnet, nun möchte ich diese in einem dritten addieren, doch das ergebnis ist falsch. die bveiden werte werden nur aneinander gehangen, also 3+5=35 :S
soweit bin ich bisher aber ich weiss nicht weiter
danke für die hilfe
<html>
<script language="JavaScript">
<!--
function berechnung1(){
var anzahl1,preis1;
anzahl1=document.test.anzahl1.value;
preis1=28.50*anzahl1 ;
document.test.preis1.value=preis1;
} //
function berechnung2(){
var anzahl2,preis2;
anzahl2=document.test2.anzahl2.value;
preis2=28.50*anzahl2 ;
document.test2.preis2.value=preis2;
} //
function berechnung3(){
var preis1,preis2,preis3;
preis1=document.test.preis1.value;
preis2=document.test2.preis2.value;
preis3=preis1+preis2;
document.test3.preis3.value=preis3;
} //
</script>
<noscript></noscript>
<body>
<table width="50" border="1" cellpadding="" bordercolor="#000000" cellspacing="0">
<tr>
<tr><form name="test">
<td><p><input size="3" value="0" name="anzahl1"></p></td>
<td><p><input onclick=berechnung1() type=button value="="></p></td>
<td><p><input name="preis1" value="0" size="3"></p></td>
</form> </tr>
<tr><form name="test2">
<td><p><input size="3" value="0" name="anzahl2"></p></td>
<td><p><input onclick=berechnung2() type=button value="="></p></td>
<td><p><input name="preis2" value="0" size="3"></p></td>
</form> </tr>
<tr><form name="test3">
<td></td>
<td><p><input onclick=berechnung3() type=button value="="></p></td>
<td><p><input name="preis3" value="0" size="3"></p></td>
</form> </tr>
</table>
</body>
</html>
soweit bin ich bisher aber ich weiss nicht weiter
danke für die hilfe
<html>
<script language="JavaScript">
<!--
function berechnung1(){
var anzahl1,preis1;
anzahl1=document.test.anzahl1.value;
preis1=28.50*anzahl1 ;
document.test.preis1.value=preis1;
} //
function berechnung2(){
var anzahl2,preis2;
anzahl2=document.test2.anzahl2.value;
preis2=28.50*anzahl2 ;
document.test2.preis2.value=preis2;
} //
function berechnung3(){
var preis1,preis2,preis3;
preis1=document.test.preis1.value;
preis2=document.test2.preis2.value;
preis3=preis1+preis2;
document.test3.preis3.value=preis3;
} //
</script>
<noscript></noscript>
<body>
<table width="50" border="1" cellpadding="" bordercolor="#000000" cellspacing="0">
<tr>
<tr><form name="test">
<td><p><input size="3" value="0" name="anzahl1"></p></td>
<td><p><input onclick=berechnung1() type=button value="="></p></td>
<td><p><input name="preis1" value="0" size="3"></p></td>
</form> </tr>
<tr><form name="test2">
<td><p><input size="3" value="0" name="anzahl2"></p></td>
<td><p><input onclick=berechnung2() type=button value="="></p></td>
<td><p><input name="preis2" value="0" size="3"></p></td>
</form> </tr>
<tr><form name="test3">
<td></td>
<td><p><input onclick=berechnung3() type=button value="="></p></td>
<td><p><input name="preis3" value="0" size="3"></p></td>
</form> </tr>
</table>
</body>
</html>
Zuletzt bearbeitet: