简单教程
提交运行
代码编辑器:
<input type="week" id="myWeek"> <p>点击按钮设置 week 字段为只读</p> <p><strong>提示:</strong> 为了查看效果,尝试在点击按钮前后在 week 字段中输入内容</p> <button onclick="myFunction()">点我</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("myWeek").readOnly = true; } </script>
运行结果: