- 热门类别
- Data Structure
- Networking
- RDBMS
- Operating System
- Java
- MS Excel
- iOS
- HTML
- CSS
- Android
- Python
- C Programming
- C++
- C#
- MongoDB
- MySQL
- Javascript
- PHP
- Physics
- Chemistry
- Biology
- Mathematics
- English
- Economics
- Psychology
- Social Studies
- Fashion Studies
- Legal Studies
- 精选读物
- UPSC IAS Exam Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
如何使用 JavaScript 检查是否点击了按钮?
以下是使用 JavaScript 检查按钮是否被点击的代码 −
示例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result { font-size: 18px; font-weight: 500; color: blueviolet; } </style> </head> <body onbeforeunload="return pageUnload()"> <h1>Checking whether a Button is clicked using JavaScript</h1> <div class="result"></div> <br /> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to check if the button is clicked</h3> <script> let BtnEle = document.querySelector(".Btn"); let resEle = document.querySelector(".result"); let clickCount = 0; BtnEle.addEventListener("click", () => { clickCount++; resEle.innerHTML = "The button has been clicked " + clickCount + " times "; }); </script> </body> </html>
输出
点击按钮 5 次 -
广告