首页 > 代码库 > JS篇 jQuery官方API使用笔记
JS篇 jQuery官方API使用笔记
使用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使用笔记
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。