JAVASCRIPT POPUP BOX
जावास्क्रिप्ट के पास तीन प्रकार के पापअप बाक्स मौजूद हैं – Alert Box, Confirm Box, तथा प्राप्ट बॉक्स।
- अलर्ट बॉक्स (Alert Box) :- Alert Box का प्रयोग तब किया जाता है जब यह सुनिश्चित करना होगी भेजी गई इंफॉर्मेशन को यूजर द्वारा ही प्रदान किया गया है। Alert Box के Popup होने के पश्चात यूजर को “OK” Button Press करना आवश्यक होता है ।
इसका सिंटेक्स :- alert(“alert message”);
PRACTICAL :- 4
JAVASCRIPT PRACTICAL :- 4
<html>
<head>
<script type=“text/javascript”>
function show_alert()
{
alert(“I am an alert box!”);
}
</script>
</head>
<body>
<input type=“button”onclick=”show_alert()” value=“show alert box”/>
</body>
</html>
<head>
<script type=“text/javascript”>
function show_alert()
{
alert(“I am an alert box!”);
}
</script>
</head>
<body>
<input type=“button”onclick=”show_alert()” value=“show alert box”/>
</body>
</html>
Example में input type=”button”