运行 ❯
获取你
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> Checkbox: <input type="checkbox" id="myCheck"> <p>Click the buttons to set or return the indeterminate state of the checkbox.</p> <button onclick="myFunction()">Return state</button> <button onclick="myFunction2()">Set state</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myCheck").indeterminate; document.getElementById("demo").innerHTML = x; } function myFunction2() { var x = document.getElementById("myCheck").indeterminate = true; } </script> </body> </html>