jQuery的prop和attr方法比較
JQuery.attr():
Get the value of an attribute for the first element in the set of matched elements.
JQuery. Prop():
Gets the value of a property for the first element in the set of matched elements.
Reference MSDN:
for a checkbox (jquery 1.6+)
.attr('checked') //returns checked
.prop('checked') //returns true
.is(':checked') //returns true
Prop() method returns Boolean value for checked, selected, disabled, readOnly..and so on while attr returns defined string. So, you can directly use .prop("checked") in if condition. SelectedIndex, tagName, nodeName, nodeType, ownerDocument, defaultChecked, and defaultSelected..and so on should be retrieved and set with the .prop() method. These do not have corresponding attributes and are only properties. .attr() calls .prop() internally so .attr() method will be slightly slower than accessing them directly through .prop().
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4650/viewspace-2800685/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- jquery prop和attr的區別jQuery
- jquery中dom元素的attr和prop方法的理解jQuery
- jQuery的attr與propjQuery
- jquery中prop和attr的區別jQuery
- Jquery中attr和prop的區別jQuery
- 淺談jquery中prop()和attr()jQuery
- prop()方法和attr()方法的區別
- jQuery實戰之 attr() 和 prop() 的區別jQuery
- Difference between prop and attr in different version of jqueryjQuery
- jquery中attr和prop的區別+jquery實現全選全不選jQuery
- jQuery之使用jQuery.fn.prop()替換jQuery.fn.attr()jQuery
- jQuery中css()和attr()方法的區別jQueryCSS
- prop()函式和attr()函式的區別函式
- prop()與attr()區別
- Checkbox點選多次失效原因,源於Jquery中.attr和.prop的區別jQuery
- Sencha Touch 和 jQuery Mobile 的比較jQuery
- jQuery attr()jQuery
- jQuery - jQuery $(document).ready() 和 JavaScript [removed]() 的比較jQueryJavaScriptREM
- Jquery中.attr()和.data()的區別jQuery
- jQuery prop()jQuery
- jq 物件的 attr 和 data 方法物件
- attr()和prop()處理checkbox核取方塊選中和不選中的區別
- jquery比較時間 的時分秒大小jQuery
- Dojo與jQuery綜合比較分析jQuery
- js 深比較和淺比較JS
- [轉載]通過jQuery的attr修改onclickjQuery
- ejb 和 javabean的比較JavaBean
- 索引的分析和比較索引
- ImageMagic 和 GraphicsMagick 的比較
- Go和Python比較的話,哪個比較好?GoPython
- 不同備份方法的特性比較
- Cesium 比較常用的幾個方法
- Oracle date 型別比較和String比較Oracle型別
- TreeMap和HashMap的元素比較HashMap
- JPA和mybatis的CRUD比較MyBatis
- Wordpress 和 Movable Type 的比較
- Unity和虛幻的比較Unity
- ArrayList和LinkedList的比較