Web sayfasındaki bir buton nesnesine tıklandığında ekrana alert ile uyarı verme örneği
Yöntem 1:
1 2 3 4 5 6 7 8 9 10 11 12 |
<!doctype html> <html> <head> <title>www.algoritmaornekleri.com</title> <meta charset="utf-8"> </head> <body> <input type="button" value="Buraya Tıkla" onclick="alert('Merhaba JavaScript');"> </body> </html> |
Yöntem 2:
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 |
<!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("go"); e.addEventListener("click", function() { alert("Merhaba JavaScript!"); }, false); }); </script> <form name="OrnekForm" action=""> <input id="go" type="button" value="Buraya Tıkla"> </form> </body> </html> |
Add Comment