Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MySQL

วิธีการแปลงเวลาวันที่ JS เป็น MySQL datetime?


เราสามารถแปลง JS date time เป็น MySQL datetime โดยใช้ฟังก์ชัน toISOString()

เรามาดูตัวอย่าง 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...