如何将JS日期时间转换为MySQL日期时间?

我们可以借助toISOString()函数将JS日期时间转换为MySQL日期时间。

让我们看一个JavaScript的例子。

示例

<!DOCTYPE html>

<html>

   <head>

      <title>Web Page Design</title>

      <script>

         document.writeln(new Date().toISOString().slice(0, 19).replace('T', ' '));

      </script>

   </head>

<body>

   <br>Current Date is displayed above...

</body>

</html>

输出结果

以下是输出。

2018-11-23 11:14:38

Current Date is displayed above...

以上是 如何将JS日期时间转换为MySQL日期时间? 的全部内容, 来源链接: utcz.com/z/331012.html

回到顶部