从我的浏览器中获取时间

可能重复:
如何在JavaScript中获取当前日期

我怎样才能得到我的浏览器白色使用JavaScript的时间? 我需要在脚本中进行比较。


currentTime = new Date();
time = currentTime.getTime();
hours = currentTime.getHours();

等等


您可以使用Date对象获取当前时间:

var currentTime = new Date();
链接地址: http://www.djcxy.com/p/77511.html

上一篇: Get the time out of my browser

下一篇: Javascript date in specified format