btw_bijtellen ()
ページが読み込まれるとすぐに関数が呼び出されるのはなぜだろうか。クリックで呼び出したかった…
var $ = function (id) {
return document.getElementById (id);
}
function btw_bijtellen () {
window.alert("we want to calculate something after clicking th button");
}
$("bereken").onclick = btw_bijtellen ();