Wol11 Posted June 17, 2007 Report Share Posted June 17, 2007 Привет всем. Есть код:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><title>Untitled Document</title></head><body bgcolor="#000000"><script language="javascript" type="text/javascript"> document.writeln('<div align="center" style="margin-top: 70px;">'); document.writeln('<object>'); document.writeln('<embed src="Metallica - The Unforgiven.mpg" type="application/x-mplayer2" autostart="true" showcontrols="0"></embed>'); document.writeln('</object>'); document.writeln('</div>');</script></body></html>Как сделать, чтобы выполнение скрипта началось секунд через 20 после загрузки страницы? Link to comment Share on other sites More sharing options...
0 LokiDi L0ck Posted June 17, 2007 Report Share Posted June 17, 2007 Засовываешь код в функцию.На событие onload вешаешь таймаут, который будет е? вызывать. Link to comment Share on other sites More sharing options...
0 Maslakoff Posted June 18, 2007 Report Share Posted June 18, 2007 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><title>Untitled Document</title></head><body bgcolor="#000000"><div align="center" style="margin-top: 70px;" id="some_conteiner"></div><script language="javascript" type="text/javascript">function onload_writethis(){document.getElementById('some_conteiner').innerHTML = '<object>'+'<embed src="Metallica - The Unforgiven.mpg" type="application/x-mplayer2" autostart="true" showcontrols="0"></embed>'+'</object>';}window.onload = new function(){setTimeout('onload_writethis()', 20000);}</script></body></html>помойму так... Link to comment Share on other sites More sharing options...
Question
Wol11
Привет всем. Есть код:
Как сделать, чтобы выполнение скрипта началось секунд через 20 после загрузки страницы?
Link to comment
Share on other sites
2 answers to this question
Recommended Posts