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已經存在,則刪除,反之,則添加。