Hallo zusammen!
Ich bin im Bereich Java eher ein Frischling.
Ich brauche eine html Datei, die zufällig (im Bereich von 1-15 Sekunden) 20 Websiten öffnet. Die Webseiten müssen nicht zufällig geöffnet werden, nur der Abstand in dem sie geöffnet (also zeitlich). Das habe ich bis jetzt geschrieben und funktioniert auch soweit, bis auf die Zeit. "window.setTimeout("Hinweis()", 1000);" muss zufällig generiert werden!
Würde mich freuen, wenn ihr mir helfen könntet.
Danke schon einmal!
Gruß
Heinz
Code:
<html><head><title>Test</title>
<script type="text/javascript">
function Hinweis () {
var x = confirm("Testpage, los gehts!. Fortfahren?");
if (x == false)
top.close();
window.setTimeout("Hinweis2()", 100);
}
function Hinweis2 {
var y=1, z=2120;Navigation = window.open("http://www.sport1.de/", "Navigation", "height=600,width=800");
Navigation.focus();window.setTimeout("Hinweis3()", z);
}
function Hinweis3 {
var y=1, z=2550;Navigation = window.open("http://www.ard.de/", "Navigation", "height=600,width=800");
Navigation.focus(); window.setTimeout("Hinweis4()", z);}
function Hinweis4 () {
var y=1, z=1900;Navigation = window.open("http://www.zdf.de/", "Navigation", "height=600,width=800");
Navigation.focus(); window.setTimeout("Hinweis5()", z);}
function Hinweis5 () {
var y=1, z=1300;Navigation = window.open("http://www.rtl.de/", "Navigation", "height=600,width=800");
Navigation.focus(); }
window.setTimeout("Hinweis()", 1000);
</script>
</head><body>
</body></html>
Ich bin im Bereich Java eher ein Frischling.
Ich brauche eine html Datei, die zufällig (im Bereich von 1-15 Sekunden) 20 Websiten öffnet. Die Webseiten müssen nicht zufällig geöffnet werden, nur der Abstand in dem sie geöffnet (also zeitlich). Das habe ich bis jetzt geschrieben und funktioniert auch soweit, bis auf die Zeit. "window.setTimeout("Hinweis()", 1000);" muss zufällig generiert werden!
Würde mich freuen, wenn ihr mir helfen könntet.
Danke schon einmal!
Gruß
Heinz
Code:
<html><head><title>Test</title>
<script type="text/javascript">
function Hinweis () {
var x = confirm("Testpage, los gehts!. Fortfahren?");
if (x == false)
top.close();
window.setTimeout("Hinweis2()", 100);
}
function Hinweis2 {
var y=1, z=2120;Navigation = window.open("http://www.sport1.de/", "Navigation", "height=600,width=800");
Navigation.focus();window.setTimeout("Hinweis3()", z);
}
function Hinweis3 {
var y=1, z=2550;Navigation = window.open("http://www.ard.de/", "Navigation", "height=600,width=800");
Navigation.focus(); window.setTimeout("Hinweis4()", z);}
function Hinweis4 () {
var y=1, z=1900;Navigation = window.open("http://www.zdf.de/", "Navigation", "height=600,width=800");
Navigation.focus(); window.setTimeout("Hinweis5()", z);}
function Hinweis5 () {
var y=1, z=1300;Navigation = window.open("http://www.rtl.de/", "Navigation", "height=600,width=800");
Navigation.focus(); }
window.setTimeout("Hinweis()", 1000);
</script>
</head><body>
</body></html>