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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。