JavaScript Tutorial/Date/getHours — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:25, 26 мая 2010

Date.getHours()

The getHours() method returns the hour portion of the date expressed as an integer from 0 (12:00 a.m. midnight) to 23 (11:00 p.m.).



<html>
<head>
<title>Current Hour</title>
</head>
<body>
<script language="JavaScript" type="text/javascript">
<!--
var current_date = new Date();
hour_value = current_date.getHours();
document.write("The current hour is " + hour_value);
//-->
</script>
</body>
</html>