JavaScript获取当前网页最后修改时间的方法

下面的JS代码输出当前网页最后修改时间,用到了document.lastModified属性

<!DOCTYPE html> <html> <body> This document was last modified on: <script> document.write(document.lastModified); </script> </body> </html>

运行效果如下:

This document was last modified on: 04/03/2015 02:42:22

希望本文所述对大家的javascript程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgjsjy.html