jQuery 属性操作 - removeClass() 方法
实例
移除所有 <p> 的 "intro" 类:
- $("button").click(function(){
- $("p:first").
removeClass("intro")
;- });
定义和用法
removeClass() 方法从被选元素移除一个或多个类。
注释:如果没有规定参数,则该方法将从被选元素中删除所有类。
语法
- $(selector).removeClass(class)
参数 | 描述 |
---|---|
class | 可选。规定要移除的 class 的名称。 如需移除若干类,请使用空格来分隔类名。 如果不设置该参数,则会移除所有类。 |
使用函数来移除类
使用函数来删除被选元素中的类。
- $(selector).removeClass(function(index,oldclass))
参数 | 描述 |
---|---|
function(index,oldclass) | 必需。通过运行函数来移除指定的类。 - index - 可选。接受选择器的 index 位置。 - html - 可选。接受选择器的旧的类值。 |
实例
改变元素的类
如何使用 addClass() 和 removeClass() 来移除一个类,并添加一个新的类。
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("p:first").removeClass("intro").addClass('main');
});
});
</script>
<style type="text/css">
.intro
{
font-size:120%;
color:red;
}
.main
{
font-size:90%;
color:blue;
}
</style>
</head>
<body>
<h1>This is a heading</h1>
<p class="intro">This is a paragraph.</p>
<p>This is another paragraph.</p>
<button>改变第一个段落的类</button>
</body>
</html>