我在我的项目中为交易页面运行倒计时,它在 chrome 和 Firefox 中运行良好,但在 IE 中,它在我的代码的每个框中给出 NAN,就像在 c 中的值一样;我的项目的链接是 http://blog.merimobiles.com/deals/customer.php var c = '02 28 2013, 23:59:59';
var count=0;
$(document).ready(function ()
{
var c = <?php echo $date ;?>;
$('#superoffer'+count).epiclock({mode: $.epiclock.modes.countdown, time: new Date(c)});
count++;
});