<html>
<body>
<input type="week" id="myWeek" disabled>
<p>点击按钮查看 week 字段是否被禁用。</p>
<button onclick="myFunction()">点我</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myWeek").disabled;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>