JavaScript Tutorial/Date/getSeconds

Материал из Web эксперт
Версия от 08:25, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Date().getSeconds()

The getSeconds() method returns the seconds portion of the Date object expressed as an integer from 0 to 59.



<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
dateVar = new Date();
alert(dateVar.getSeconds());
//  -->
</script>
</head>
<body>
</body>
</html>