<html>
<body>
时间: <input type="time" id="myTime" readonly>
<p>点击按钮查看 time 字段是否为只读。</p>
<button onclick="myFunction()">点我</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myTime").readOnly;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>