编辑下面的代码:
【加编码】
查看效果 »
<html> <body> <input type="month" id="myMonth"> <p>点击按钮禁用 month 字段。</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { document.getElementById("myMonth").disabled = true; } </script> </body> </html>
结果:
【此窗口】
帮助?