编辑下面的代码:【加编码】
<html> <body> <h3>以下实例演示了如何访问 Time 字段</h3> <input type="time" id="myTime" value="22:15:00"> <p>点击按钮获取 time 字段的时间。</p> <button onclick="myFunction()">点我</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myTime").value; document.getElementById("demo").innerHTML = x; } </script> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂