JavaScript Tutorial/Date/getDate — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:25, 26 мая 2010
Date.getDate()
The getDate() method returns the day of the month expressed as an integer from 1 to 31.
<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
dateVar = new Date();
alert(dateVar.getDate());
// -->
</script>
</head>
<body>
</body>
</html>