ana sayfa > jQuery > jQuery – attr() – removeAttr()

jQuery – attr() – removeAttr()

Çarşamba, 28 Eki 2015 yorum ekle yorumlara git

.attr() : Belirtilen nesnenin alt özelliklerine erişmeye yarar.

<img src="https://www.google.com/intl/en_ALL/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" alt="Google . . ." title="Google Her Yerde" ><br>
<button id="title">Title Getir</button>
<button id="titleChange">Title Değiştir</button>
$("#title").click(function () {
    alert($("img").attr("title"));
});

$("#titleChange").click(function () {
    $("img").attr("title", "Google Her Yerde.......");
    alert($("img").attr("title"));
});

.removeAttr() : Belirtilen nesneden istenilen özniteliğin kaldırılmasını sağlar.

<img src="https://www.google.com/intl/en_ALL/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" alt="Google . . ." title="Google Her Yerde" ><br>
<button id="title">Title Getir</button>
<button id="titleRemove">Title Kaldır</button>
$("#title").click(function () {
    alert($("img").attr("title"));
});

$("#titleRemove").click(function () {
    $("img").removeAttr("title");
    alert($("img").attr("title"));
});

 

Categories: jQuery Tags: , ,
  1. şimdilik yorum yok.
  1. şimdilik geri bağlantı yok
yorum yapabilmek için giriş yapmalısınız