简单教程
提交运行
代码编辑器:
主页: <input type="url" id="myURL"> <p>点击按钮禁用 URL 字段</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { document.getElementById("myURL").disabled = true; } </script>
运行结果: