IE에서 작동하지 않는 이유는 무엇입니까? 키스 우드 (Keith Wood)의 카운트 다운 플러그인을 사용하고 있습니다. 플러그인과 JQuery를 업데이트했습니다. 모든 타이머는 IE에 00:00을 표시하며 첫 번째 타이머 만 표시됩니다.JQuery 카운트 다운이 IE에서 작동하지 않습니다.
<script type = "text/javascript">
$(function() {
var i = 0;
$('.countdown').each(function() {
var year = $(this).attr('yr');
var month = $(this).attr('mth') - 1;
var day = $(this).attr('day');
var hour = $(this).attr('hr') - 3;
var minute = $(this).attr('min');
var second = $(this).attr('sec');
var ends = new Date();
ends = new Date(year, month, day, hour, minute, second);
$('#countdown_' + i).countdown({until: ends, format: 'MS', compact: true});
i++;
console.log("Countdown!");
});
});
</script>
console.log – j08691
을 주석 처리하여 문제가 해결되었지만 여전히 00:00을 표시하고 있습니다. – user3161764