2012-07-20 56 views
2

我在網站timeshift.co上工作,我安裝了Keiths Woods的jquery倒計時。它在Chrome上運行完美,但在IE,Mozilla,iPad和iPhone中無法正常工作。 倒數完美計數直到10.1.2012。它顯示72天7小時等等。在其他瀏覽器上,它顯示NaN天,NaN小時等。jQuery倒計時Keith Wood不在mozilla工作

我有以下的html:

<html> 
<head> 
    <script type="text/javascript" src="jquery.js"></script> 
    <script type="text/javascript" src="jquery.countdown.min.js"></script> 
    <script type="text/javascript" src="scripts.js"></script> 
    <link rel="stylesheet" type="text/css" href="style.css" media="screen" /> 
    <link rel="stylesheet" type="text/css" href="jquery.countdown.css" media="screen" /> 
</head> 
<body> 
    <div class="body"> 
     <div class="countdown"></div> 
     <div class="logo"></div> 
    </div> 
</body> 
</html> 

裏面scripts.js我:

$(document).ready(function(){ 
    var date = new Date('10.1.2012'); 
    $('.countdown').countdown({until: date , format: 'DHMS'}); 
}); 

有什麼不對jquery.countdown.min.js?我不知道該怎麼做。

+0

有人嗎?需要幫助。 – 2012-07-20 14:01:24

回答

3

嘗試脫帽的Dd

$('.countdown').countdown({until: date , format: 'dHMS'}); 

因爲同樣是在homepage of the plugin完成:

$(selector).countdown({until: liftoffTime, format: 'dHM'}); 

編輯:更改爲以下,it works for me in Safari

var date = new Date(2012, 10-1, 1); 

該條款的解析g可能在除Chrome以外的瀏覽器中出錯。

+0

沒有沒有工作:(謝謝你的嘗試 – 2012-07-20 14:09:16

+0

更新了我的答案。 – Calavoow 2012-07-20 14:26:17

+0

謝謝謝謝謝謝!您好幫助。 – 2012-07-20 14:29:50

3

檢查你的日期。 如果你的日期是前。 「2012年2月23日23時22分22秒」 更改爲「2012年2月23日23時22分22秒」

使用斜線或者iphone Mozilla不會抱怨

+0

謝謝,這是我爲這個問題的版本。 – 2012-12-06 21:23:16