如何使用 JavaScript 让我的 php 页面每 2 分钟重新加载一次?
每两分钟我想检查我是否收到一些消息,所以想每 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
你为什么坚持使用 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" />
快速而肮脏:
虽然我认为可能有一种更奇特的方法来做到这一点,但这只是我所知道的。
Quick and dirty:
Though I think there could possibly be a fancier way of doing this, this is just what I know though.
我建议考虑使用 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/
如果您的客户端没有 javascript(例如功能手机浏览器)怎么办?
将其放入 HTML 标头的 head 文件夹中。 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.
我发现的最简单的方法也是 javascript 证明。
该代码位于 HEAD 标记之间。
上面的代码每 15 秒重新加载一次页面。根据需要将 15 更改为所需的值。例如;页面每 5 分钟重新加载一次,费用为 300。
The easiest way I found out which is also javascript proof.
This code goes in between the HEAD tags.
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.