18
.prop () ve .attr () karşılaştırması
Yani jQuery 1.6 yeni bir işleve sahiptir prop(). $(selector).click(function(){ //instead of: this.getAttribute('style'); //do i use: $(this).prop('style'); //or: $(this).attr('style'); }) ya da bu durumda aynı şeyi yapıyorlar mı? Ve eğer do kullanarak anahtara sahip prop(), tüm eski attr()ı 1.6 geçerseniz kıracak aramaları? GÜNCELLEME selector = '#id' $(selector).click(function() { //instead of: var …
2299
javascript
jquery
dom
attr
prop