手動修改太麻煩了,找找javascript有沒有方法
後來找到javascript可以用document.lastModified取得文見最後修改日期
如果lastModified提供的格式不符合需求的話
也可以用內建的Date物件重新包裝
舉個例子
var lastModDate = new Date(document.lastModified);
document.write("最後修改日期:" +lastModDate.toDateString());
var lastModDate = new Date(document.lastModified);
document.write("最後修改日期:" +lastModDate.toDateString());
沒有留言:
張貼留言