Important Notice:

Course Content
Switch Statement
0/1
break and continue Statements
0/3
Basic Form Validation in JavaScript
0/1
JavaScript & Angular JS (Chapter- 6) M2-R5.1
About Lesson

Alert Box:-

             alert box के user को कोई important message में show करने के लिए प्रयोग किया जाता है जब आप चाहते है की user आपके message को जरुर पढ़े ऐसी situation में आप alert box का प्रयोग कर सकते है ये box current window से focus हटा देता है और केवल message show होता है साथ ही alert box में एक OK का button भी होता है जिस पर click करने से alert box हट जाता है JavaScript में alert dialog को generate करने के लिए आप alert function को कॉल करते है इस function में आप जो message show करना चाहते है उसे argument की तरह लिखते है।

आम तौर पर, अलर्ट method का उपयोग  निम्न के लिए किया जाता है

  • Showing incorrect information in a form

  • An invalid result from a calculation

  • A warning

Syntax:-

                  alert( “<string>”)

                 alert(“<message>” + variable)

 

Alert Box:-

               Alert box is used to show an important message to the user when you want the user to read your message. In such a situation, you can use alert box. This box removes the focus from the current window and only The message is shown and there is also an OK button in the alert box, clicking on which removes the alert box. To generate the alert dialog in JavaScript, you call the alert function. In this function, you want to show the message. If you want, we write it as an argument.

Generally, alert method is used for

  • Showing incorrect information in a form

  • An invalid result from a calculation

  • A warning

Syntax:-

                 alert( “<string>”)

                  alert(“<message>” + variable)

error: Content is protected !!