使用 onclick 属性在 HTML 中单击元素时执行脚本。
<!DOCTYPE html> <html> <body> <button onclick = "display()">Click</button> <p id = "test"></p> <script> function display() { document.getElementById("test").innerHTML = "You clicked the button!"; } </script> </body> </html>
以上是当HTML元素被点击时执行脚本?的详细内容。更多信息请关注PHP中文网其他相关文章!