在 HTML 中当元素被点击时执行脚本?
在 HTML 中,使用 onclick 属性可在单击元素时执行脚本。
示例
尝试运行以下代码来实现 onclick 属性 -
<!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>
广告