Niels: Script durch endlos Schleife wieder holen

Beitrag lesen

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("&nbsp;");  
document.write("+");  
document.write("&nbsp;");  
document.write(zufall2);  
document.write("&nbsp;");  
document.write("=");  
  
document.write("<p>");  
  
document.write("&nbsp; &nbsp; &nbsp; &nbsp;");  
  
document.write(zufall1 + zufall2);  
 }  
</script>  
</head>  
<body onload="rechnen()">  
</body>  
</html>