运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The click() Method</h2> <p>Hover over the checkbox to simulate a mouse-click.</p> <form> <input type="checkbox" id="myCheck" onmouseover="myFunction()"> </form> <script> function myFunction() { document.getElementById("myCheck").click(); } </script> </body> </html>