如何在 html 过期时加载另一个 html?

发布于 2024-11-28 06:35:29 字数 176 浏览 0 评论 0原文

我试图制作一个示例 HTML 页面,并且我已设置“

<META HTTP-EQUIV="expires" CONTENT="Wed, 08 Aug 2011 11:00 PDT">

我想在 HTML 过期时加载更新的 HTML”。 注意:服务器位于电话本地。

I was trying to make a sample HTML page and I have set the

<META HTTP-EQUIV="expires" CONTENT="Wed, 08 Aug 2011 11:00 PDT">

I want to load updated HTML on expiry of the HTML.
Note : The server is local to the phone.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我为君王 2024-12-05 06:35:29

听起来您希望用户的浏览器在一段时间后加载不同的页面。如果是这样,您不想使用“过期”,而是想使用“刷新”。 “Expires”用于向浏览器提示哪些内容可以安全缓存,与导致页面重新加载无关。

这将导致页面在 10 秒后加载 example.com:

<meta http-equiv="refresh" content="10;url=http://example.com/">

It sounds like you want the user's browser to load a different page after a certain amount of time. If so, you don't want to use "expires", you want to use "refresh" instead. "Expires" is for giving hints to the browser about what is safe to cache, and has nothing to do with causing the page to reload.

This will cause the page to load example.com after 10 seconds:

<meta http-equiv="refresh" content="10;url=http://example.com/">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文