我在網站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
?我不知道該怎麼做。
有人嗎?需要幫助。 – 2012-07-20 14:01:24