感谢您提前阅读本文。
我正在尝试显示一条消息,向我的用户发出警告。我已成功完成此操作,但是当我重复我的函数使用的操作时,该消息不再出现。
任何帮助,将不胜感激!
//take 5 seconds off the timer
var count = parseInt($('.timerCount').html());
$('.timerCount').html(count - 5);
$('.timerWarnings').html("5 seconds has been deducted from the timer");
$('.timerWarnings').fadeOut("slow");