Posted in Javascript onMay 23, 2014
jQuery的属性操作非常简单,下面以一个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 获取/设置/删除DOM元素的属性以a元素为例
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@