<html>
<body>
时间:<input type="time" id="myTime">
<p>单击按钮可将时间字段设置为只读。</p>
<p><b>提示:</b>如需查看效果,请在单击按钮前后尝试在时间字段中键入内容。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("myTime").readOnly = true;
}
</script>
</body>
</html>