码迷,mamicode.com
首页 > Windows程序 > 详细

JS篇 jQuery官方API使用笔记

时间:2015-01-06 17:23:06      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

  使用jQuery时,有些API容易混淆,通过API、源码记录心得如下:

 

1. $elem.attr() 、 $elem.prop()

  1) Attribute values are strings with the exception of a few attributes such as value and tabindex.

  Attribute值通常是string类型,除了一些其他的属性,如:value, tabindex.

  2) DOM Element Properties generally affect the dynamic state of a DOM element without changing the serialized HTML attribute. .prop() should be used when setting selectedIndex, tagName, nodeName, nodeType, ownerDocument, defaultChecked, or defaultSelected, checked, disabled, selected.

  DOM元素的property通常会改变节点的动态状态,如:checked, disabled, selected.

  总结:通常使用.attr(),如果是.prop()则针对上面的属性;

 

JS篇 jQuery官方API使用笔记

标签:

原文地址:http://www.cnblogs.com/diydyq/p/4206401.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!