我使用这个插件:jQuery Countdown in ASP.NET page。
我的代码是:
.cs 文件:
DateTime time1 = DateTime.Now.AddMinutes(2).ToString()
Label1.Text = time1.ToString();
.aspx 文件:
<script src="JQueryCountDown/jquery-1.10.1.min.js" type="text/javascript"></script>
<link href="JQueryCountDown/countdown.demo.css" rel="stylesheet" type="text/css" />
<script src="JQueryCountDown/jquery.countdown.js" type="text/javascript"></script>
<script type="text/javascript">
window.jQuery(function ($) {
$(".ctdwn").countDown({});
});
</script>
...
<asp:Label runat="server" ID="Label1" CssClass="ctdwn"></asp:Label>
它工作正常。
现在我想在那 2 分钟内重置倒计时并再次从 2 分钟开始(使用 javascript)。但我不知道该怎么做。例如,此代码不起作用并禁用倒计时:
resetTime = function (dt) {
$('#Label1').text(dt);
$(".ctdwn").countDown({});
};
谢谢。