こんにちは、次のカウントダウン タイマーを使用しています。このプラグインは [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');
}
});
});