<html>
<body>
时间:<input type="time" id="myTime" value="06:45:30">
<p>单击该按钮可将时间字段的值增加 10 分钟(每次单击)。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
document.getElementById("myTime").stepUp(10);
}
</script>
</body>
</html>