本文實例講述了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程序設計有所幫助。