很多初级开发者不知道“jQuery removeClass()的使用方法”,下面是示例代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="jQuery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("h1,h2,p").removeClass("blue");
});
});
</script>
<style type="text/css">
.important
{
font-weight:bold;
font-size:xx-large;
}
.blue
{
color:blue;
}
</style>
</head>
<body>
<h1 class="blue">标题 1</h1>
<h2 class="blue">标题 2</h2>
<p class="blue">这是一个段落。</p>
<p class="important">这是另外一个段落。</p>
<br>
<button>从元素中移除 class</button>
</body>
</html>
本文来自投稿,不代表本站立场,如若转载,请注明出处:https://www.xiaobinblog.com/1111.html
发表评论