在 jQuery 中,我们可以使用 removeAttr() 方法来删除元素的某个属性。
语法:
举例:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
.content{color:red;font-weight:bold;}
</style>
<script src="js/jquery-1.12.4.min.js"></script>
<script>
$(function () {
$("p").click(function(){
$(this).removeAttr("class");
});
})
</script>
</head>
<body>
<p class="content">城东书院</p>
</body>
</html>
预览效果如图 1 所示。
这里我们为 p 元素添加一个点击事件。在点击事件中,我们使用 removeAttr() 方法来删除 class 属性,删除类名之后,该元素就没有那个类名所对应的样式了。
removeAttr() 方法更多情况下是结合 class 属性来“整体”控制元素的样式属性的,我们再来看一个例子。
举例:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
.content{color:red;font-weight:bold;}
</style>
<script src="js/jquery-1.12.4.min.js"></script>
<script>
$(function () {
$("#btn_add").click(function(){
$("p").attr("class", "content");
});
$("#btn_remove").click(function () {
$("p").removeAttr("class");
});
})
</script>
</head>
<body>
<p>城东书院</p>
<input id="btn_add" type="button" value="添加样式" />
<input id="btn_remove" type="button" value="删除样式" />
</body>
</html>
预览效果如图 所1 示。
想要为一个元素添加一个 class(即使不存在 class 属性),可以使用:
$().attr("class", "类名");
想要为一个元素删除一个 class,可以使用:
$().removeAttr("类名");