2012-07-20 2 views
2

timeshift.co 사이트에서 작업 중이며 Keiths Woods의 jquery 카운트 다운을 설치했습니다. Chrome에서 완벽하게 작동하지만 IE, Mozilla, iPad 및 iPhone에서는 작동하지 않습니다. 카운트 다운은 10.1.2012까지 완벽하게 계산됩니다. 그것은 72 일 7 시간 등등을 보여줍니다. 다른 브라우저에서는 NaN 일, NaN 시간 등이 표시됩니다.jQuery 카운트 다운 Keith Wood가 모질라에서 작동하지 않습니다.

나는 다음과 같은 HTML이있다 : scripts.js 내부

<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> 

나는이 :

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

jquery.countdown.min.js 어떤 문제가 있습니까? 나는 무엇을해야할지 모른다.

+0

누구를 불평로 변경 ? 도움이 필요합니다. –

답변

3

Dd에 uncapping보십시오 :

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

편집 : 같은이 homepage of the plugin에서 수행되기 때문에

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

변경을 다음에, it works for me in Safari :

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

을 strin 구문 분석 Chrome 이외의 브라우저에서 g가 잘못되었을 수 있습니다.

+0

아니요 작동하지 않았다 :(시도해 주셔서 감사합니다 –

+0

내 대답이 업데이트되었습니다. – Calavoow

+0

고맙습니다. 고맙습니다! 도와 주실만한 분입니다. –

3

날짜를 확인하십시오. 날짜가 이전 일 경우. "2012년 2월 23일 23시 22분 22초"는 "2012년 2월 23일 23시 22분 22초"

슬래시 또는 다른 아이폰 모질라

+0

고마워요,이게 내 문제입니다. –