简单教程
提交运行
代码编辑器:
<input type="color" id="myColor"> <p>点击 "点我" 按钮禁用以上拾色器</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { document.getElementById("myColor").disabled = true; } </script>
运行结果: