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
어떤 문제가 있습니까? 나는 무엇을해야할지 모른다.
누구를 불평로 변경 ? 도움이 필요합니다. –