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()कॉल अगर मैं 1.6 …
2297
javascript
jquery
dom
attr
prop