gpt4 book ai didi

html - 为什么元刷新在 Firefox 中不起作用?

转载 作者:搜寻专家 更新时间:2023-10-31 22:42:53 25 4
gpt4 key购买 nike

我的页面包含这个:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="5; URL=http://www.example.com">
</head>
<body>
test
</body>
</html>

它在 Chrome 中重定向,但在 Firefox 中不重定向。为什么不呢?

最佳答案

在 Firefox 中,默认情况下自动刷新已被禁用。

在浏览器中启用自动刷新:

  1. 在您的网络浏览器的地址栏中输入about:config
  2. 出现一条消息:点击接受
  3. 搜索blockautorefresh
  4. accessibility.blockautorefreshfalse 更改为 true

最好使用替代方案,例如 JavaScript 或 PHP 重定向。

JavaScript

window.setTimeout(function() {
window.location.href = 'http://www.google.com';
}, 5000);

PHP

header("refresh:5;url=wherever.php");

关于html - 为什么元刷新在 Firefox 中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29645340/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com