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

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

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

Display document.lastModified

<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
//  -->
</script>
</head>
<body>
<SCRIPT language = "JavaScript">
<!--
document.write("Last updated: " + document.lastModified)
//-->
</SCRIPT>
</body>
</html>


document.lastModified

The lastModified property contains the date and time the document was last modified on the server.



<html>
    <script language="JavaScript">
    <!--
    document.write("Starting ",document.lastModified," the following ");
    -->
    </script>
    </html>