jQuery 属性操作 removeClass() 方法
jQuery 属性操作 removeClass() 方法
removeClass() 方法从被选元素移除一个或多个类。
注释:如果没有规定参数,则该方法将从被选元素中删除所有类。
1. 语法
$(selector).removeClass(class)
参数 | 描述 |
---|---|
class |
可选。规定要移除的 class 的名称。 如需移除若干类,请使用空格来分隔类名。 如果不设置该参数,则会移除所有类。 |
2. 范例
移除所有
的 "intro" 类:
$("button").click(function(){ $("p:first").removeClass("intro"); });
3. 使用函数来移除类
使用函数来删除被选元素中的类。
$(selector).removeClass(function(index,oldclass))
参数 | 描述 |
---|---|
function(index,oldclass) |
必需。通过运行函数来移除指定的类。
|
4. - 范例
- 改变元素的类
如何使用 addClass() 和 removeClass() 来移除一个类,并添加一个新的类。
相关文章
- jQuery 语法
- jQuery 遍历 兄弟
- jQuery 参考手册 效果
- jQuery 事件 blur() 方法
- jQuery 事件 click() 方法
- jQuery 事件 mousedown() 方法
- jQuery 事件 toggle() 方法
- jQuery 事件 undelegate() 方法
- jQuery 遍历 dequeue() 方法
- jQuery 遍历 queue() 方法
- jQuery 遍历 closest() 方法
- jQuery 遍历 find() 方法
- jQuery ajax ajaxComplete() 方法
- jQuery ajax ajaxSend() 方法
- jQuery CSS 操作 css() 方法
- jQuery 属性操作 attr() 方法
- jQuery 属性操作 removeAttr() 方法
- jQuery 文档操作 detach() 方法
- jQuery 文档操作 prependTo() 方法
- jQuery [attribute=value] 选择器