18
.প্রপ () বনাম .আত্র ()
সুতরাং 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() { //instead …
2296
javascript
jquery
dom
attr
prop