Jquery/JEasyUI How do I get the current date?

This question already has an answer here:

  • How do I get the current date in JavaScript? 39 answers

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

    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/77530.html

    上一篇: 在JavaScript中获取当前日期和时间

    下一篇: Jquery / JEasyUI如何获取当前日期?