ManHunter
Silver Member | Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору Готовый код Код: <script> function clock() { now=new Date(); var Hours=now.getHours(); if (Hours<10) {Hours="0"+Hours}; var Minutes=now.getMinutes(); if (Minutes<10) {Minutes="0"+Minutes}; var Seconds=now.getSeconds(); if (Seconds<10) {Seconds="0"+Seconds}; Hello = Hours + " : " + Minutes + " : " + Seconds; (document.all?document.all['mtime']:document.getElementById('mtime')).innerHTML = Hello; Timer=setTimeout("clock()",500); } clock(); </script> | В месте с часиками вставить Код: <div id="mtime"> </div> |
---------- "На любое мое движение ваша реакция предусмотрена, В лучшем случае - равнодушие, в худшем случае - патология..." (C) Егор Летов |
|