我需要24小时会话倒计时。即时通讯使用jQuery.countdown。 下面的代码为我倒数12h,为什么不倒数24h? 如果我将范围设置为20秒或10,则倒计时表示完成了。 有人看到错误了吗?
<?php
date_default_timezone_set('Europe/Berlin');
$_SESSION['code_end'] = time() + 86400;
?>
<div id="getting-started"></div>
<script type="text/javascript">
$("#getting-started").countdown("<?php echo date('Y/m/d h:i:s', $_SESSION['code_end']);?>")
.on('update.countdown', function(event) {
var format = '%H:%M:%S';
if(event.offset.totalDays > 0) {
format = '%-d day%!d ' + format;
}
if(event.offset.weeks > 0) {
format = '%-w week%!w ' + format;
}
$(this).html(event.strftime(format));
})
.on('finish.countdown', function(event) {
alert("session End");
$(this).html('This offer has expired!')
.parent().addClass('disabled');
});
</script>
答案 0 :(得分:1)
您需要为倒数计时功能提供24H格式。
您的代码:
$("#getting-started").countdown("<?php echo date('Y/m/d h:i:s', $_SESSION['code_end']);?>")
需要是:
$("#getting-started").countdown("<?php echo date('Y/m/d H:i:s', $_SESSION['code_end']);?>")
(大写H表示24H格式)
在此处有一个有效的示例:https://www.seeque-secure.dk/demo.php?id=jQuery.countdown+issue+on+seconds+countdown