0

我在我的项目中为交易页面运行倒计时,它在 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++;
}); 

在此处输入图像描述

4

1 回答 1

1

你可以阅读这个问题,它可以让你解决你的问题。请检查接受的答案。

Date 构造函数在 IE 中返回 NaN,但在 Firefox 和 Chrome 中有效

JavaScript 中的 Date 构造函数需要 parse() 方法支持的日期格式之一的字符串。

于 2013-02-28T06:26:50.370 回答