Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Javascript

जावास्क्रिप्ट - HTML बटन पर क्लिक करने पर अलर्ट बनाएं

<घंटा/>

एक बटन के क्लिक पर अलर्ट सक्रिय करने के लिए, addEventListener() का उपयोग करें। मान लें कि HTML वेब पेज पर हमारा बटन निम्नलिखित है -

<button type="button">Please Press Me</button>

उदाहरण

निम्नलिखित कोड है -

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>Document</title>
</head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<body>
   <button type="button">Please Press Me</button>
</body>
<script>
   var pressedButton = document.getElementsByTagName("button")[0];
   pressedButton.addEventListener("click", function (event) {
      alert("You have pressed the button..........")
   })
</script>
</html>

उपरोक्त प्रोग्राम को चलाने के लिए, फ़ाइल का नाम anyName.html(index.html) सेव करें। फ़ाइल पर राइट क्लिक करें और वीएस कोड संपादक में "लाइव सर्वर के साथ खोलें" विकल्प चुनें -

आउटपुट

आउटपुट इस प्रकार है -

जावास्क्रिप्ट - HTML बटन पर क्लिक करने पर अलर्ट बनाएं

जब भी आप बटन दबाएंगे, आपको एक अलर्ट संदेश मिलेगा।

आउटपुट

आउटपुट इस प्रकार है -

जावास्क्रिप्ट - HTML बटन पर क्लिक करने पर अलर्ट बनाएं


  1. ऑनक्लिक () के साथ एक फ़ंक्शन को कॉल करें - जावास्क्रिप्ट?

    मान लें कि निम्नलिखित हमारा बटन है - <button onclick="displayingMessageOnButtonClick()">Press Me</button> हमें उपरोक्त बटन के क्लिक पर एक फ़ंक्शन को कॉल करने की आवश्यकता है। उदाहरण निम्नलिखित कोड है - <!DOCTYPE html> <html lang="en"> <head>  

  1. जावास्क्रिप्ट के साथ एक टू-डू सूची बनाएं

    उदाहरण कार्य सूची बनाने के लिए निम्नलिखित कोड है - <!DOCTYPE html> <html lang="en"> <head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <t

  1. HTML के साथ फाइल अपलोड बटन कैसे बनाएं?

    HTML के साथ फ़ाइल अपलोड बटन कैसे बनाएं, कोड इस प्रकार है - उदाहरण <!DOCTYPE html> <html> <head> <h1>File upload button example</h1> <p>Click on the "Choose File" button to upload a file:</p> <form> <input type="file" id="FIL