Hallo, wie kann sich dieses Script immer wieder selbst aufrufen?
Mit setTimeout oder setInterval habe ich es nicht geschafft.
<html><head>
<title>Kopfrechnen1</title>
<script type="text/javascript">
var aktiv;
var zufall1;
var zufall2;
function rechnen(){
zufall1=(Math.round(Math.random()*30+1 ));
zufall2=(Math.round(Math.random()*10+1 ));
document.write(zufall1);
document.write(" ");
document.write("+");
document.write(" ");
document.write(zufall2);
document.write(" ");
document.write("=");
document.write("<p>");
document.write("<a href=\"Kopfrechnen1.html\" target=\"_self\"><font color=\"#0000FF\">RECHNEN</font></a>");
document.write(" ");
document.write(zufall1 + zufall2);
}
</script>
</head>
<body onload="rechnen()">
</body>
</html>