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() { //instead of: var getAtt = this.getAttribute('style'); …
2297
javascript
jquery
dom
attr
prop