Jquery / JEasyUI如何获取当前日期?

这个问题在这里已经有了答案:

  • 如何在JavaScript中获取当前日期? 39个答案

  • 您可以使用此代码查找两个日期之间的天数。

    var d1=new Date(2014,06,15);
    var d2=new Date(2014,06,10);
    var timeInSec=d1-d2;
    var days=timeInSec/(1000*60*60*24);
    
    链接地址: http://www.djcxy.com/p/77529.html

    上一篇: Jquery/JEasyUI How do I get the current date?

    下一篇: How do I represent the current time with a variable?