Anbei ein Währungsrechner am Beispiel Euro zu Dollar:
<html>
<body>
<head>
<script type="text/javascript">
function Umrechnen(Zahl) {
UmrechnenForm.Dollar.value = Zahl*1.6;
}
</script>
</head>
<form name="UmrechnenForm" action="">
Euro:<input name="Euro" type="text" size="30" maxlength="30"><input type="button" value="="
onclick="Umrechnen(UmrechnenForm.Euro.value)">
Dollar:<input name="Dollar" type="" size="30" maxlength="40">
</form>
</body>
</html>
Das Wichtige am Rechner ist die Funktion und der onclick Effekt vom Button.
Viel Spaß
<html>
<body>
<head>
<script type="text/javascript">
function Umrechnen(Zahl) {
UmrechnenForm.Dollar.value = Zahl*1.6;
}
</script>
</head>
<form name="UmrechnenForm" action="">
Euro:<input name="Euro" type="text" size="30" maxlength="30"><input type="button" value="="
onclick="Umrechnen(UmrechnenForm.Euro.value)">
Dollar:<input name="Dollar" type="" size="30" maxlength="40">
</form>
</body>
</html>
Das Wichtige am Rechner ist die Funktion und der onclick Effekt vom Button.
Viel Spaß