标签:blog http 2014 art html div
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‘)
addClass()
加入?一个class
hasClass()
推断是否有參数中指定的class
removeClass()
移除一个class
toggleClass()
假设參数中指定的class已经存在,则删除,反之,则加入?。
jQuery -> 获取/设置/删除DOM元素的属性,布布扣,bubuko.com
标签:blog http 2014 art html div
原文地址:http://www.cnblogs.com/yxwkf/p/3841274.html