Bu JavaScript örneğinde sayfamıza eklediğimiz butona tıkladığımızda sayfada bulunan başlığın rengini değiştireceğiz.
Kodlarımız ve ekran çıktısı:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<!DOCTYPE html> <html> <body> <h1 id="id1">algoritmaornekleri.com<h1> <button type="button" onclick="document.getElementById('id1').style.color = 'red'"> TIKLA</button> </body> </html> |
Buton tıklayınca arka plan rengini rastgele değiştirme
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 38 39 40 41 42 43 44 |
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>TasarimKodlama.com</title> <style> #kutu{ width: 200px; height: 100px; line-height: 100px; text-align: center; font-size:20px; font-family: sans-serif; font-weight: bold; margin: 5px; } </style> </head> <body> <br> <button id="btn1">Zemin Rengi Değiştirme</button> <div id="kutu"> Merhaba Dünya </div> <script> var btn1=document.querySelector("#btn1"); btn1.onclick=function(){ var kirmizi=Math.floor(Math.random()*255); var yesil=Math.floor(Math.random()*255); var mavi=Math.floor(Math.random()*255); var renk=`rgb(${kirmizi} ,${yesil}, ${mavi})`; kutu.style.background=renk; } </script> </body> </html> |
Selam bu buton tıklandığında sayfada kalıcı olarak nasıl kayıt edebilirim