我正在创建一个项目,其中一个表单传递一个日期,然后通过一个函数将一个新的div附加到具有唯一ID和计时器的页面。虽然这个项目在Chrome中完美运行,但它并不适用于Firefox,IE。问题在于id。我在countdown()函数中获取id警报但不在代码中指定的倒计时插件内。 有趣的是,如果只有一个ID为" id"而不是多个具有唯一ID的div,例如" id1"," id2"," id3"该插件也适用于Firefox。所以问题是Firefox在某种程度上无法解析倒计时插件中的多个ID。请参阅倒计时(id)功能。
function add_countdown_handler() {
$('.countdownParentDiv').each(function () {
var btn = this;
countdown(btn.id);
});
}
function countdown(id) {
var date = $('#end_date'+id).val(); //eg- 2016-01-01 00:00:00
alert(id); **//working**
alert(date); **//working**
$('#countdown'+id).countdown({ date: date}, function() {
alert('id:'+id); **//not working**
alert('date:'+d); **//not working**
});
}
//这个倒计时插件工作正常
(function($) {
$.fn.countdown = function (options,callback) {
var settings = {'date': null};
if(options) {
$.extend(settings, options);
}
var this_sel = $(this);
function count_exec() {
eventDate = Date.parse(settings['date']) / 1000;
currentDate = Math.floor($.now() / 1000);
if(eventDate <= currentDate) {
callback.call(this);
clearInterval(interval);
}
seconds = eventDate-currentDate;
days = Math.floor(seconds/(60*60*24));
seconds -= days*60*60*24;
hours = Math.floor(seconds/(60*60));
seconds -= hours * 60 * 60;
minutes = Math.floor(seconds/60);
seconds -= minutes * 60;
days = (String(days).length !==2) ? '0' + days : days;
hours = (String(hours).length !==2) ? '0' + hours : hours;
minutes = (String(minutes).length !==2) ? '0' + minutes : minutes;
seconds = (String(seconds).length !==2) ? '0' + seconds : seconds;
if(!isNaN(eventDate)) {
this_sel.find('.days').text(days);
this_sel.find('.hours').text(hours);
this_sel.find('.mins').text(minutes);
this_sel.find('.secs').text(seconds);
}
}
count_exec();
var interval = setInterval(count_exec, 1000);
}
})(jQuery的);
这是我在 Chrome 中获得的完美选择。 此处计时器正在运行:
这是相同的照片,但是从 Firefox (这里的计时器是00:00:00 ... )剪下来了