तो फ्रेंड prompt() फंक्शन एक ऐसा फंक्शन है जिसमें आप कोई भी value get वैल्यू गेट कर सकते हैं जैसे नेम एड्रेस डेट ऑफ बर्थ या फिर कोई भी वैल्यू मोबाइल नंबर इत्यादि आप वहां से गेट कर सकते हैं ।
तो फ्रेंड चलिए अब हम प्रमुख फंक्शन का एक एग्जांपल लिखते हैं और आप चाहे तो इस कोड को कॉपी और पेस्ट करके अपने फोन या डेस्कटॉप पर रन कर सकते हैं।
Example -
<html> <head> <script type = "text/javascript"> function getname() { var retVal = prompt("Enter your name : ", "Ram"); // Ram as default value document.write("You have entered : " + retVal); } </script> </head> <body> <p>Click the following button to see the result: </p> <form> <input type = "button" value = "Click Me" onclick = "getname();" /> </form> </body> </html>
Output -
Click the following button to see the result:
0 Comments