Skip to content

Latest commit

 

History

History
12 lines (6 loc) · 150 Bytes

jquery属性操作.md

File metadata and controls

12 lines (6 loc) · 150 Bytes

获取属性

obj.attr('disabled');

添加属性

obj.attr('disabled', 'disabled');

移除属性

obj.removeAttr('disabled');