jQuery -> 获取/设置/删除DOM元素的属性

jQuery的属性操作很easy,以下以一个a元素来说明属性的获取/设置/删除操作

<body>
<a>jquery.com</a>
</body>


加入?属性

$(‘a‘).attr(‘href‘, ‘http://www.jquery.com‘)


加入?多个属性

$(‘a‘).attr({‘href‘:‘http://www.jquery.com‘, ‘title‘:‘jquery.com‘})


获取属性

$(‘a‘).attr(‘href‘)


class属性


addClass()

加入?一个class


hasClass()

推断是否有參数中指定的class


removeClass()

移除一个class


toggleClass()

假设參数中指定的class已经存在,则删除,反之,则加入?。

jQuery -&gt; 获取/设置/删除DOM元素的属性,布布扣,bubuko.com

jQuery -&gt; 获取/设置/删除DOM元素的属性

上一篇:SAP用户密码规则限制-安全策略


下一篇:flex在IE浏览器中不能实现垂直居中