我正在使用以下coundown计时器。我从[Keith wood] [1] http://keith-wood.name/countdown.html获得了这个插件。
它适用于所有浏览器,预计IE8。计时器无法在IE 8中运行
我的代码如下,任何人都可以帮我解决这个问题。
$(document).ready(function () {
austDay.setSeconds(austDay.getSeconds() + rTime);
$('#defaultCountdown').countdown({
until: austDay,
format: 'MS',
onTick: function(periods){
if(periods[6]==5){
alert("Only Five Seconds left");
}
},
onExpiry:function(){
alert("Time Out");
window.location.replace(SitePath+'finalpage.html');
}
});
});