18
.prop () vs .attr ()
Тож jQuery 1.6 має нову функцію prop(). $(selector).click(function(){ //instead of: this.getAttribute('style'); //do i use: $(this).prop('style'); //or: $(this).attr('style'); }) чи в цьому випадку вони роблять те саме? І якщо я дійсно повинен перейти до використання prop(), всі старі attr()виклики зламається , якщо я перейти на 1.6? ОНОВЛЕННЯ selector = '#id' $(selector).click(function() …
2297
javascript
jquery
dom
attr
prop