hey,
Script
HTMLCode:function berekening(){ var beginkapitaal=document.getElementById("beginkapitaal").value; var intrest=document.getElementById("intrest").value; var aantal_jaar=document.getElementById("aantal_jaar").value; var eindkapitaal=document.getElementById("eindkapitaal").value; eindkapitaal=beginkapitaal*Math.pow((1+intrest),aantal_jaar); }
The goal is to display the value outputted by the function berekening() in the input field with the id="eindkapitaal".HTML Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Interestformulier</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript"> /* <![CDATA[ */ function berekening(){ var beginkapitaal=document.getElementById("beginkapitaal").value; var intrest=document.getElementById("intrest").value; var aantal_jaar=document.getElementById("aantal_jaar").value; var eindkapitaal=document.getElementById("eindkapitaal").value; eindkapitaal=beginkapitaal*Math.pow((1+intrest),aantal_jaar); } /* ]]> */ </script> </head> <body> <form action=""> <table border="1" cellpadding="5"> <thead> <tr> <th>Beginkapitaal</th> <th>Intrest</th> <th>Aantal jaar</th> <th>Eindkapitaal</th> </tr> </thead> <tbody> <tr> <td><input type="text" id="beginkapitaal" name="beginkapitaal" /></td> <td><input type="text" id="intrest" name="intrest" onblur="if(document.getElementById('intrest').value>=1) document.getElementById('intrest').value=document.getElementById('intrest').value/100;"/></td> <td><input type="text" id="aantal_jaar" name="aantal_jaar" /></td> <td><input type="text" id="eindkapitaal" name="eindkapitaal" onselect="blur()" /></td> </tr> </tbody> </table> <p> <input type="button" value="Bereken eindkapitaal" onclick="berekening()" /> <input type="reset" value="Opnieuw beginnen" /> </p> </form> </body> </html>
Although the script does put out a value I do not succeed in getting it to show up in the textfield. Any suggestions/idea's why this is?


hey,
Reply With Quote

Bookmarks