rfb: Zufallstext

Beitrag lesen

Moin

so könnte sowas aussehen (statt eines Buttons einfach auf den angezeigten Witz klicken):

<html>  
<head>  
<title>Ein Witz</title>  
<script type="text/javascript">
var witz={  
 liste:["kam ein ...","treffen sich ...","2 Informatiker ..","bei Microsoft ..."],  
 auswahl:function() {  
  var w=Math.floor(Math.random()*witz.liste.length);  
  var ww=witz.liste[w];  
  if (witz.liste.length>1) witz.liste.splice(w,1);  
  var witzplatz=document.getElementById("witzplatz");  
  if (witzplatz) {  
   if (!witzplatz.firstChild) witzplatz.appendChild(document.createTextNode(ww));  
   else witzplatz.firstChild.data=ww;  
  }  
 },  
 init:function() {  
  var witzplatz=document.getElementById("witzplatz")  
  if (witzplatz) witzplatz.onclick=witz.auswahl;  
 }  
}  
window.onload=function() {  
witz.init();  
witz.auswahl();  
}
</script>  
</head>  
<body>  
<div id="witzplatz"></div>  
</body>  
</html>

Gruß
rfb

--
Man kann einen Menschen nichts lehren, man kann ihm nur helfen, es selbst zu entdecken.
(Galileo Galilei)