jQuery getTime 函数
是否可以创建一个 jQuery 函数来获取当前日期和时间? 我一直在查看文档,但到目前为止还没有找到任何东西......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以创建一个 jQuery 函数来获取当前日期和时间? 我一直在查看文档,但到目前为止还没有找到任何东西......
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
@nickf 是正确的。 然而,更准确地说:
因此,如果您想将其显示为 mm/dd/yyyy,您可以这样做:
查看 Date 对象的完整引用。 不幸的是,打印出各种格式并不像使用其他服务器端语言那么好。 因此有-有-很多< /a>-函数可在野外使用。
@nickf's correct. However, to be a little more precise:
So if you want to display it as mm/dd/yyyy, you would do this:
Check out the full reference of the Date object. Unfortunately it is not nearly as nice to print out various formats as it is with other server-side languages. For this reason there-are-many-functions available in the wild.
是的,这是可能的:
或者简单地
查看 jQuery.now() 的 jQuery 文档
Yes, it is possible:
or simply
see jQuery Documentation for jQuery.now()
你不需要 jquery 来做到这一点,只需要 javascript 即可。 例如,您可以使用以下方法创建计时器:
您可以在此处查看完整的参考:http:// www.hunlock.com/blogs/Javascript_Dates-The_Complete_Reference
You don't need jquery to do that, just javascript. For example, you can do a timer using this:
You can view a complete reference here: http://www.hunlock.com/blogs/Javascript_Dates-The_Complete_Reference
这是简单的 JavaScript:
It's plain javascript:
使用 jQuery 的数字时钟
Digital Clock with jQuery
这是我的方式:
它可能不是最好的,但可以完成工作:)
this is my way :
it's not maybe the best but do the work :)
令人烦恼的是,Javascript 的
date.getSeconds()
et al 不会用零11:0:0
而不是11:00 填充结果:00
。所以我喜欢使用
Which renders
11:00:00 AM
。 使用额外选项时请注意,某些浏览器不支持它们 (Safari)文档
Annoyingly Javascript's
date.getSeconds()
et al will not pad the result with zeros11:0:0
instead of11:00:00
.So I like to use
Which renders
11:00:00 AM
. Just beware when using the extra options, some browsers don't support them (Safari)Documentation