gpt4 book ai didi

javascript - 我想将日期格式更改为 "yyyy-mm-dd"

转载 作者:行者123 更新时间:2023-11-28 11:06:54 25 4
gpt4 key购买 nike

在我的脚本标签中,var today显示在 Sat Sep 07 2019 00:00:00 GMT+0530 (India Standard Time)日期格式,我想将此日期格式更改为 yyyy-mm-dd格式。

我的代码:

<script>
$(document).ready(function() {
var date = new Date();
var today = new Date(date.getFullYear(), date.getMonth(), date.getDate());
console.log(today);
});
</script>

我正在尝试这样:

<script>
$(document).ready(function() {
var date = new Date();
var today = new Date(date.getFullYear(), date.getMonth(), date.getDate());
var newDate = "<?php echo date("Y-m-d", strtotime(today)); ?>";
console.log(newDate);
});
</script>

如何使用 strtotime() 更改日期格式?

最佳答案

使用 PHP 获取今天的日期并更改格式


$origDate = "2019-01-15";

$newDate = date("m-d-Y", strtotime($origDate));
echo $newDate;

输出

01-15-2019

用js

  var date  = new Date();
var year=date.getFullYear();
var month= date.getMonth();
var date=date.getDay();

console.log(` ${day}:${month}:${year}`);

关于javascript - 我想将日期格式更改为 "yyyy-mm-dd",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57833471/

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