Helft mal einem Anfänger, der fast am verzweifeln ist. :-(
was ist hier falsch?
<html>
<head>
<title>addition</title>
<script TYPE="text/javascript">
addition()
{
var a = parseInt(document.formular.zahl1.value);
var b = parseInt(document.formular.zahl2.value);
alert (a);
alert (b);
}
</script>
</head>
<body>
<form method="POST" action="--WEBBOT-SELF--" name="formular">
<input type="text" Name="zahl1" value="10"><br>
<input type="text" Name="zahl2" value="15"><br>
<input type="button" name="berechnen" value="berechnen" onClick="addition()">
</form>
</body>
</html>
was ist hier falsch?
<html>
<head>
<title>addition</title>
<script TYPE="text/javascript">
addition()
{
var a = parseInt(document.formular.zahl1.value);
var b = parseInt(document.formular.zahl2.value);
alert (a);
alert (b);
}
</script>
</head>
<body>
<form method="POST" action="--WEBBOT-SELF--" name="formular">
<input type="text" Name="zahl1" value="10"><br>
<input type="text" Name="zahl2" value="15"><br>
<input type="button" name="berechnen" value="berechnen" onClick="addition()">
</form>
</body>
</html>