如何使用 JavaScript 让我的 php 页面每 2 分钟重新加载一次?

发布于 2024-09-05 15:38:34 字数 71 浏览 10 评论 0原文

每两分钟我想检查我是否收到一些消息,所以想每 2 分钟重新加载我的页面如何使用 javascript 重新加载我的 php 页面

Every two minutes i want to check whether i received some message so want to reload my page every 2 minutes how to reload my php page using javascript

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

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

发布评论

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

评论(6

不及他 2024-09-12 15:38:34
<body onload="setInterval('window.location.reload()', 120000);">
<body onload="setInterval('window.location.reload()', 120000);">
天生の放荡 2024-09-12 15:38:34

你为什么坚持使用 javascript。您也可以在没有 JavaScript 的情况下完成此操作。

Why are you sticking on javascript. You can do this without Javascript too.
<meta http-equiv="refresh" content="2;url=http://path/to/the/page" />

宣告ˉ结束 2024-09-12 15:38:34

快速而肮脏:

setTimeout( function() {
    location.reload()
}, 120000);

虽然我认为可能有一种更奇特的方法来做到这一点,但这只是我所知道的。

Quick and dirty:

setTimeout( function() {
    location.reload()
}, 120000);

Though I think there could possibly be a fancier way of doing this, this is just what I know though.

野鹿林 2024-09-12 15:38:34

我建议考虑使用 ajax 来实现。查看 jQuery 库或任何 JavaScript 库。

http://jquery.com/

I recommend looking into doing it with ajax. Look at the jQuery library, or any of the JavaScript libraries.

http://jquery.com/

蓝天白云 2024-09-12 15:38:34
      <meta http-equiv="refresh" content="n">

如果您的客户端没有 javascript(例如功能手机浏览器)怎么办?
将其放入 HTML 标头的 head 文件夹中。 n 是刷新间隔的秒数。

      <meta http-equiv="refresh" content="n">

What if your client doesn't have javascript e.g feature phone browsers?
Put that in the head folder of your HTML header. n is the number of seconds for the refresh intervals.

世界如花海般美丽 2024-09-12 15:38:34

我发现的最简单的方法也是 javascript 证明。

该代码位于 HEAD 标记之间。

<META HTTP-EQUIV="refresh" CONTENT="15">

上面的代码每 15 秒重新加载一次页面。根据需要将 15 更改为所需的值。例如;页面每 5 分钟重新加载一次,费用为 300。

The easiest way I found out which is also javascript proof.

This code goes in between the HEAD tags.

<META HTTP-EQUIV="refresh" CONTENT="15">

The above code reloads the page every 15 seconds. Change 15 to the desired value as required. For eg; 300 for a page to reload every 5 minutes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文