当我使用 javascript:alert(document.lastModified) 时出现警报,但未包含任何信息
当我在 Chrome 中使用以下 javascript:alert(document.lastModified) 检查我的网站是否已更新时,会出现警报对话框,但框中没有任何内容。我的页面由 PHP 提供支持,因此它应该显示页面请求的时间和日期,不是吗?
When I use the following, javascript:alert(document.lastModified), in Chrome to check whether my site was updated, the alert dialog box appears, but there is no content within the box. My page is powered by PHP, therefore it should display the time and date of page request should it not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PHP 生成的页面没有上次修改日期。它们是动态生成的,因此根据定义,它们的最后修改数据是“现在”,无论实际提供了多少动态数据,或者输出自上次以来是否没有更改。您必须使用
header()
自行设置最后修改的标头。PHP-generated pages don't have last-modified dates. They're dynamically generated, so by definition their last-modified data is "now", regardless of how much dynamic data is actually served, or if the output hasn't changed since the last time. You'd have to set a last-modified header yourself, using
header()
.