<html>
<body>
时间:<input type="time" id="myTime">
<p>单击按钮可为时间字段设置时间。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("myTime").value = "18:45:30";
}
</script>
</body>
</html>