我刚试过document.lastModified
,但它返回系统日期和时间,而不是html文件上次修改的日期和时间。
这是非常奇怪的行为。
我是如何检查的:
我已经将命令插入到js中,然后我在调试中断/断点模式下使用google chrome dev工具在运行时查找了文档属性:每次我将鼠标指向document.lastmodified
属性时,它都会随之更改系统时间和每秒更新,无需退出html文档,无需将其保存到其他地方,也无需重新加载到浏览器中,无需使用任何编辑器执行任何其他操作。
然后我停用了断点,让代码自由执行,它也会在第一次检查时返回系统时间......
这次仔细检查让我觉得该命令无法从浏览器中正确解释。
命令document.lastModified
是某种方式"已损坏"?
编辑: 我所谈论的文件是本地而非服务器文件,因此不涉及http请求或标头。
... _ _ _...
答案 0 :(得分:0)
根据the spec:
文档的源文件的最后修改日期和时间必须来自所使用的网络协议的相关功能,例如:来自文档的HTTP Last-Modified标头的值,或来自本地文件的文件系统中的元数据。
所以应该在那里。这是Chrome中的reported bug。 Searching the Chromium source code表明情况确实如此(请注意FIXME
评论):
// http://www.whatwg.org/specs/web-apps/current-work/#dom-document-lastmodified
String Document::lastModified() const
{
DateComponents date;
bool foundDate = false;
if (m_frame) {
if (DocumentLoader* documentLoader = loader()) {
const AtomicString& httpLastModified = documentLoader->response().httpHeaderField(HTTPNames::Last_Modified);
if (!httpLastModified.isEmpty()) {
date.setMillisecondsSinceEpochForDateTime(convertToLocalTime(parseDate(httpLastModified)));
foundDate = true;
}
}
}
// FIXME: If this document came from the file system, the HTML5
// specificiation tells us to read the last modification date from the file
// system.
if (!foundDate)
date.setMillisecondsSinceEpochForDateTime(convertToLocalTime(currentTimeMS()));
return String::format("%02d/%02d/%04d %02d:%02d:%02d", date.month() + 1, date.monthDay(), date.fullYear(), date.hour(), date.minute(), date.second());
}
Firefox和IE似乎已经实现了这一点,但是:)