Web Programlama

Web Programlama

DERS PROGRAMI
Web Programlama 302 Ders Programı

attr() Fonksiyonu - Vasıflara Erişme

Lisans: Creative Commons 26.11.2020 tarihinde güncellendi
Bakabileceğiniz Etiketler: Eğitmen: Geleceği Yazanlar Ekibi

jQuery'nin attr() metodu sayesinde vasıf değerlerine erişebilirsiniz. Aşağıdaki örnekte href vasfının değerine nasıl erişilebileceği gösterilmiştir.:

$("button").click(function(){
  alert($("#w3s").attr("href"));
});

attr() fonksiyonu örnek HTML kodu:

<!DOCTYPE html>
<html>
    <head>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
        <script>
            $(document).ready(function(){
                              $("button").click(function(){
                                                alert($("#gy").attr("href"));
                                                });
                              });
            </script>
    </head>
 
    <body>
        <p id="gy" href="https://gelecegiyazanlar.turkcell.com.tr">GELECEGIYAZANLAR.ORG</p>
        <button>href DEGERINI GOSTER</button>
    </body>
</html>

Kod çalışınca GELECEGIYAZANLAR.ORG düğmesine tıkladığınızda Geleceği Yazanlar'ın web adresi görüntülenecektir.