jQuery getTime函数

前端之家收集整理的这篇文章主要介绍了jQuery getTime函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有可能创建一个jQuery函数,以便它获取当前的日期和时间?我一直在找文档,但迄今还没有找到任何东西…

解决方法

@ nickf的正确。但是,要更精确一点:
// if you try to print it,it will return something like:
// Sat Mar 21 2009 20:13:07 GMT-0400 (Eastern Daylight Time)
// This time comes from the user's machine.
var myDate = new Date();

所以,如果你想显示为mm / dd / yyyy,你会这样做:

var displayDate = (myDate.getMonth()+1) + '/' + (myDate.getDate()) + '/' + myDate.getFullYear();

查看Date对象的full reference。不幸的是,它打印出来的各种格式,因为它是与其他服务器端语言差不多好。因为这个原因therearemanyfunctions在野外可用。

原文链接:/jquery/184682.html

猜你在找的jQuery相关文章