在 .. 倒计时器 PHP 中显示重定向
到目前为止,我有这段代码,它会在 5 秒后将用户重定向到正确的 URL:
请您告诉我如何显示一个倒计时器,其中显示“正在重定向..”,其中“..”是剩余的秒数。我是网络开发新手,所以所有代码都会有所帮助!
I have this code so far that redirects the user after 5 seconds to the correct URL:
<?php
$url = $_GET['url'];
header("refresh:5;url=$url");
include('ads.php');
?>
Please could you tell me how i could display a countdown timer saying Redirecting In.. with .. being the amount of seconds left. I am new to web development so all code will be helpful!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你可以试试这个。
You can try this.
因为这是初学者常见的问题;我只是想强调,为了最佳实践,
setInterval
应该并且可以通常可以通过在函数内递归使用setTimeout
来避免。例如:
As this is a common beginner question; I just wanted to highlight that for best practise
setInterval
should, and can usually be avoided by usingsetTimeout
recursively within a function.For example:
凯尔的优秀代码。我已经用暂停和恢复按钮修改了计时器。
Excellent code by Kyle. I have modified the timer with a pause and resume button.
这是我的看法,没有函数外部的变量。取决于 jQuery。
这是一个使用它的示例 http://jsfiddle.net/VJT9d/
Here is my take on it, without variables outside of the function. Depends on jQuery.
Here is an example using it http://jsfiddle.net/VJT9d/