removeClass()方法是jQuery中的内置方法,用于从所选元素中删除一个或多个类名。
用法:
$(selector).removeClass(class_name, function(index, current_class_name))
参数:该函数接受上述和以下描述的两个参数:
- class_name:它是可选参数,用于指定要删除的类名称(一个或多个类)。多个类名用空格分隔。
- function:它是可选参数,它返回一个或多个需要删除的类名。
- index:此参数用于返回元素的索引。
- current_class_name:此参数返回所选元素的类名称。
返回值:此方法返回具有指定的已删除类名称的所选元素。
以下示例说明了jQuery中的removeClass()方法:
范例1:
<html>
<head>
<title>The removeClass Method</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<!-- jQuery code to show the working of this method -->
<script>
$(document).ready(function() {
$("p").click(function() {
$("p").removeClass("GFG");
});
});
</script>
<style>
.GFG {
font-size: 120%;
color: green;
font-weight: bold;
font-size: 35px;
}
div {
width: 50%;
height: 200px;
padding: 20px;
border: 2px solid green;
}
</style>
</head>
<body>
<div>
<!-- click on any paragraph and see the change -->
<p class="GFG">Welcome to</p>
<p class = "GFG">GeeksforGeeks</p>
</div>
</body>
</html>
输出:
在单击该段之前:
单击该段后:
范例2:本示例不包含参数。这将删除所选元素的所有类。
<!DOCTYPE html>
<html>
<head>
<title>The removeClass Method</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<!-- jQuery code to show the working of this method -->
<script>
$(document).ready(function() {
$("p").click(function() {
$("p").removeClass();
});
});
</script>
<style>
.GFG {
font-size: 120%;
color: green;
font-weight: bold;
font-size: 35px;
}
div {
width: 300px;
height: 200px;
padding: 20px;
border: 2px solid green;
}
</style>
</head>
<body>
<div>
<!-- click on any paragraph and see the change -->
<p class="GFG">Welcome to </p>
<p class="GFG">GeeksforGeeks!</p>
</div>
</body>
</html>
输出:
在单击该段之前:
单击该段后:
相关文章:
相关用法
- JQuery one()用法及代码示例
- JQuery last()用法及代码示例
- JQuery after()用法及代码示例
- JQuery first()用法及代码示例
- JQuery on()用法及代码示例
- JQuery has()用法及代码示例
- JQuery eq()用法及代码示例
- JQuery val()用法及代码示例
- JQuery keyup()用法及代码示例
- JQuery index()用法及代码示例
- JQuery insertAfter()用法及代码示例
- JQuery Keydown()用法及代码示例
- JQuery addBack()用法及代码示例
- JQuery hide()用法及代码示例
- JQuery fadeTo()用法及代码示例
注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery | removeClass() with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。