18
.prop () vs .attr ()
So jQuery 1.6 hat die neue Funktion prop(). $(selector).click(function(){ //instead of: this.getAttribute('style'); //do i use: $(this).prop('style'); //or: $(this).attr('style'); }) oder machen sie in diesem Fall dasselbe? Und wenn ich sie zu Schalter müssen mit prop(), alle alten attr()Anrufe brechen , wenn ich auf 1,6 wechseln? AKTUALISIEREN selector = '#id' $(selector).click(function() …
2300
javascript
jquery
dom
attr
prop