1

我正在使用 jquery 创建一个倒数计时器,我在这里参考了一些示例并得出了以下代码。问题是时间不显示,我不知道出了什么问题。卡了将近2个小时。。

回码

    var day = 1;                        //countdown time
    var start = player.LastActive;      // Use UtcNow instead of Now
    var endTime = start.AddDays(day);   //endTime is a member, not a local variable
    Timespan remainingTime = endTime - DateTime.UtcNow;

我的 javascript

var endTime = '<%= remainingTime%>';
var startTime = '<%= DateTime.UtcNow %>'

$(document).load(function () {
        countDown(endTime);
    });

    function countDown(endTime) {
        if (endTime > 0) {
            var d = document.getElementById("countDiv");
            d.innerHTML = endTime;
            setTimeout(function () { countDown(endTime - 1); }, 1000);
        }
    }

我的 html

<div id="countDiv" style="float:left;margin-top: 13px; margin-left:5px;"></div>

我的目标是显示一个玩家需要多长时间才能获得他的每日移动:这是玩家最后活跃时间之后的一天。有人可以启发我..谢谢你

4

4 回答 4

2

由于您的结束时间是 javascript 代码中的字符串,请先将其转换为整数

尝试这个

$(document).ready(function () {
        countDown(parseInt(endTime));
    });
于 2013-09-13T11:35:29.200 回答
2

利用$(window).load

或者

$(document).ready

但不是$(document).load

并且您似乎使用 jquery,您可以这样做

$(document).ready(function () {
        countDown(endTime);
    });

    function countDown(endTime) {
        if (endTime > 0) {
            $('#countDiv').text(secondsToTime(endTime));
            setTimeout(function () { countDown(endTime - 1); }, 1000);
        }
    }
function secondsToTime(secs)
{
    var hours = Math.floor(secs / (60 * 60));

    var divisor_for_minutes = secs % (60 * 60);
    var minutes = Math.floor(divisor_for_minutes / 60);

    var divisor_for_seconds = divisor_for_minutes % 60;
    var seconds = Math.ceil(divisor_for_seconds);

    return hours +':' + minutes + ':' + seconds;
}

有时,它来自 https://stackoverflow.com/a/6312999/961526,您可以使用另一个版本,您可以在那里找到。

jsFiddle

于 2013-09-13T11:38:13.700 回答
0

ready,不是load

$(document).ready(function () {
  countDown(endTime);
});
于 2013-09-13T11:37:51.563 回答
0

或者试试这个

  $(function() {
            countDown(endTime);
       });

 function countDown(parseInt(endTime)) {
        if (endTime > 0) {
            $('#countDiv').text(endTime);
            setTimeout(function () { countDown(endTime - 1); }, 1000);
        }
    }
于 2013-09-13T11:40:47.693 回答