Hi auch,
ich hab mir das folgende Javascript aus einer Seite raus kopiert um zu verstehen wie das funktioniert. Aber ich werd nicht so ganz schlau draus, weil das wenn ch das lokal eimfüge nicht funktioniert. Hat jemand ne idee?
ich hab mir das folgende Javascript aus einer Seite raus kopiert um zu verstehen wie das funktioniert. Aber ich werd nicht so ganz schlau draus, weil das wenn ch das lokal eimfüge nicht funktioniert. Hat jemand ne idee?
PHP-Code:
<script type="text/javascript">
v=new Date();
var bx=document.getElementById('bx');
function t(){n=new Date();
s=5884-Math.round((n.getTime()-v.getTime())/1000.);
m=0;
h=0;
if(s<0)
{
bx.innerHTML='Abgeschlossen<br><a href="konstruktion.php?q=010137ca72d4cfb06590df347x8x19x3">weiter</a>'
}
else
{
if(s>59)
{
m=Math.floor(s/60);
s=s-m*60
}
if(m>59)
{
h=Math.floor(m/60);
m=m-h*60
}
if(s<10)
{
s="0"+s
}
if(m<10)
{
m="0"+m
}
bx.innerHTML=h+":"+m+":"+s+'<br><a href="konstruktion.php?q=010137ca71d4cfb0659029bf347x8x19x3&stop=y">Abbrechen</a>'
}
window.setTimeout("t();",999);}window.onload=500;
</script>
Kommentar