将javascript中的日期与(d M Y)格式进行比较

时间:2015-05-26 12:34:42

标签: javascript php ajax json

这是我的代码

jsondata[i]['date']

此处def testing(request): return render_to_response('pages/testing.html', ) def testing1(request): return render_to_response('pages/comingsoon.html',) def testing2(request): x= User.objects.all() return render_to_response('pages/index1.html',{'users': x,}) def testing3(request): context = User.objects.all() return render_to_response('pages/testing.html',) 的日期为d M Y格式, 我如何将json日期与php当前日期进行比较。 提前致谢

1 个答案:

答案 0 :(得分:0)

您无法直接比较json日期日期而无需转换为特定日期格式。

var curDate ='<?php echo date('d M Y') ?>';

//将curDate与您的json日期进行比较,如下所示

 if(Date.parse("29 May 2015") < Date.parse(curDate)) { // your code }