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