gpt4 book ai didi

javascript - 如何在js中使用UTC日期字符串仅显示日期而不显示时间?

转载 作者:行者123 更新时间:2023-12-03 02:58:54 25 4
gpt4 key购买 nike

尝试通过执行以下操作仅显示日期:

let myDate="2015-03-08T04:49:49.431Z";
console.log(new Date(myDate).toUTCString('dd-mm-yyyy'));

仍然返回时间,我怎样才能只返回日期?

最佳答案

var myDate="2015-03-08T04:49:49.431Z";
new Date(myDate).toLocaleDateString(); // "3/8/2015"
new Date(myDate).toDateString(); // "Sun Mar 08 2015"

您可以在此处检查所有其他方法:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date

关于javascript - 如何在js中使用UTC日期字符串仅显示日期而不显示时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47491522/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com