Bu yazıda bir prompt nesnesi belirli bir şarta göre kullanımını inceleyeceğiz. Aşağıdaki kodları kopyalayıp örneği çalıştırabilirsiniz.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
<!doctype html> <html> <head> <title>www.algoritmaornekleri.com</title> <meta charset="utf-8"> </head> <body> <script> document.addEventListener("DOMContentLoaded", function(event) { var e = document.getElementById("git"); e.addEventListener( "click", function() { var name=prompt("Adınız Nedir?","Yusuf"); if ( name!=null && name!="" ) { output = "Güzel " + name + ". Çok iyi görünüyorsun!"; } else { output = "Aaaa! Adını Sordum Görmedin mi?"; } document.getElementById( "mesaj" ).innerText = output; }, false); }); </script> <form name="myForm" action=""> <input id="git" type="button" value="Kullanıcı adınızı girin"> </form> <p id="mesaj"></p> </body> </html> |
Add Comment