<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>