我正在使用David Walsh的time-ticker函数。每当我必须创建一个新实例并完全编写一个新实例时,我确实设法在回调函数中返回false。但如果我能以某种方式更新内部的回调函数形式,那将是更干净的代码。请告诉我,即使它更通用。在此先感谢:)
答案 0 :(得分:0)
你可以提供你喜欢的任何回调...它是其中一个设置 - 所以如果你想结束回调,你只需要退出它。
$('#countdown').countDown({
startNumber: 10,
callBack: function(me) {
$(me).text('All done! This is where you give the reward!').css('color','#090');
alert("You can do anything here");
// Including calling another function
DoSomething();
return false;
}
});