我需要在页面标题中显示的每 5 秒自动倒计时一个 php 变量 -1 并自动更新,例如。标题:“剩余 23/30 自动战斗”。
这可以在 php/jquery 中完成吗?任何帮助,将不胜感激。
提前致谢。
我需要在页面标题中显示的每 5 秒自动倒计时一个 php 变量 -1 并自动更新,例如。标题:“剩余 23/30 自动战斗”。
这可以在 php/jquery 中完成吗?任何帮助,将不胜感激。
提前致谢。
在 PHP - 不可能
在 JS 中(你不能在*.js
文件中做)
var counter = <?php echo $currentGames; ?>,
counterTimer,
totalGames = <?php echo $totalGames; ?>;
counterTimer = setInterval(reCounter(), 5000);
function reCounter() {
window.title = counter + '/' + totalGames + ' Auto Battles Remaining';
if (counter <= 0) {
clearInterval(counterTimer);
}
counter--;
}