removeClass(class )
优质
小牛编辑
137浏览
2023-12-01
描述 (Description)
removeClass( class )方法从匹配元素集中删除所有或指定的类。
语法 (Syntax)
以下是使用此方法的简单语法 -
<i>selector</i>.removeClass( class )
参数 (Parameters)
以下是此方法使用的所有参数的说明 -
class - CSS类的名称。
例子 (Example)
以下示例将删除第一段中的红色 -
<html>
<head>
<title>The Selecter Example</title>
<script type = "text/javascript"
src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
</script>
<script type = "text/javascript" language = "javascript">
$(document).ready(function() {
$("p#pid1").removeClass("red");
});
</script>
<style>
.red { color:red; }
.green { color:green; }
</style>
</head>
<body>
<p class = "red" id = "pid1">This is first paragraph.</p>
<p class = "green" id = "pid2">This is second paragraph.</p>
</body>
</html>