fork download
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <!--
  6. metaタグでcharsetをUTF-8に設定しています。
  7. (モチロン他のキャラクターセットに変更しても良いですが)必ずcharsetに設定されているキャラクターセットでセーブして下さい。
  8. -->
  9. <title></title>
  10. <style>
  11. </style>
  12. </head>
  13. <body>
  14. <input type="date" name="date" onchange="InputDate(this);">
  15. </body>
  16. <script>
  17. function InputDate(w) {
  18. console.log(w.value);
  19. let oInputDate;
  20. oInputDate = new Date(w.value);
  21. console.log(oInputDate);
  22. }
  23. </script>
  24. </html>
  25.  
Success #stdin #stdout 0.02s 25448KB
stdin
Standard input is empty
stdout
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <!--
metaタグでcharsetをUTF-8に設定しています。
(モチロン他のキャラクターセットに変更しても良いですが)必ずcharsetに設定されているキャラクターセットでセーブして下さい。
-->
  <title></title>
  <style>
  </style>
</head>
<body>
  <input type="date" name="date" onchange="InputDate(this);">
</body>
<script>
  function InputDate(w) {
    console.log(w.value);
    let oInputDate;
    oInputDate = new Date(w.value);
    console.log(oInputDate);
  }
</script>
</html>