Ветеран
Сообщения: 1404
Благодарности: 135
|
Профиль
|
Отправить PM
| Цитировать
Нужны часы или вывод времени только один раз?
Если вывод только один раз, то:
<script language="JavaScript"><!--
Now = new Date();
document.write(Now.getHours() + ":" + Now.getMinutes() + ":" + Now.getSeconds());
// --></script>
Если часы, то:
7<script language="JavaScript"><!--
// httр://dhtml.narod.ru/java_script_time.html
var clockID = 0;
function UpdateClock() {
if(clockID) {
clearTimeout(clockID);
clockID = 0;
}
var tDate = new Date();
document.theClock.theTime.value = ""
+ tDate.getHours() + ":"
+ tDate.getMinutes() + ":"
+ tDate.getSeconds();
clockID = setTimeout("UpdateClock()", 1000);
}
function StartClock() {
clockID = setTimeout("UpdateClock()", 500);
}
function KillClock() {
if(clockID) {
clearTimeout(clockID);
clockID = 0;
}
}
//-->
</script>
<body onload="StartClock()" onunload="KillClock()">
<form name="theClock">
<input type=text name="theTime" size=8>
<form>
|
Последний раз редактировалось mrcnn, 30-01-2005 в 11:28.
Отправлено: 11:13, 30-01-2005
| #2
|