18
.prop () එදිරිව .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()ඇමතුම් i 1.6 මාරු නම් කඩා බිඳ දමනු ඇත? යාවත්කාලීන කරන්න selector = '#id' $(selector).click(function() …
2303
javascript
jquery
dom
attr
prop