倒计时在IE中工作不正常

时间:2013-02-28 06:23:04

标签: php javascript

我在我的项目中为交易页面运行倒计时它在chrome和Firefox中正常工作但在IE中它在我的代码的每一个框中都给出了NAN,因为值是; 我项目的链接是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++;
}); 

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以阅读此问题,以便您解决问题。请检查接受的答案。

Date constructor returns NaN in IE, but works in Firefox and Chrome

  

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