通过 Javascript 进行日期格式化 - JQuery

发布于 2024-11-16 17:49:08 字数 208 浏览 2 评论 0原文

日期总是让人抓狂(至少对我来说),而且我面临这样一个事实:Javascript 似乎没有格式化日期的方法。

我正在尝试格式化日期以使用 Google API,它要求您提供以下格式的日期:yyyy'-'MM'-'dd'T'HH':'mm':'ss.fffffff (例如 2011- 06-25T10:00:00.000+02:00)

我需要能够读取这种字符串并生成一个。

Dates are always a kick in the nuts (at least for me) and I faced the fact that Javascript doesn't seem to have a method to format dates.

I'm trying to format a date to use the Google API which ask you for a date in this format: yyyy'-'MM'-'dd'T'HH':'mm':'ss.fffffff (e.g. 2011-06-25T10:00:00.000+02:00)

I need to be able to read that kind of string and to produce one.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

[浮城] 2024-11-23 17:49:08

我经常使用 jQuery 插件: http://plugins.jquery.com/project/jquery-dateFormat

<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="https://raw.github.com/phstc/jquery-dateFormat/master/jquery.dateFormat-1.0.js"></script>
<script type="text/javascript">
$(function() {
    var d = new Date();
    alert($.format.date(d, 'yyyy-MM-ddTHH:mm:ss'));
})
</script>

I often use jQuery plugin: http://plugins.jquery.com/project/jquery-dateFormat

<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="https://raw.github.com/phstc/jquery-dateFormat/master/jquery.dateFormat-1.0.js"></script>
<script type="text/javascript">
$(function() {
    var d = new Date();
    alert($.format.date(d, 'yyyy-MM-ddTHH:mm:ss'));
})
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文