我正在使用它运行的jQuery Countdown插件处理这段代码,但是如果我尝试使用带有“function showPauseTime()”的函数,我会一直得到错误showPauseTime undefined。
任何机构都可以查看代码并告诉我如何解决这个问题
$('#beginExercise').click(function() {
//check if terms checkbox is checked before stating timer
if($('#terms').is(':checked')){
$("#pauseButton").show();
//start time at zero
$("#elapsTimer").countdown({since: 0,onTick:showPauseTime});
//Allow the Elaps Timer to be paused
$('#pauseButton').toggle(function() {
$(this).text('Resume Exercise');
$('#elapsTimer').countdown('pause');
},
function() {
$(this).text('Pause Exercise');
$('#elapsTimer').countdown('resume');
});
function showPauseTime(periods) {
$('#showPauseTime').text(periods[4] + ':' + twoDigits(periods[5]) +
':' + twoDigits(periods[6]));
}
} //end if
});
答案 0 :(得分:0)
你可以保持功能:showPauseTime(句点){...}在“点击”事件之外,然后再试一次吗?
此函数还需要一个参数:句子,我想是在函数调用中没有提供的。