找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索本站精品资源

首页 教程频道 查看内容

jquery怎么去除class属性

作者:模板之家 2021-11-25 11:45 56人关注

方法:1、用attr()将class属性的值设为空,语法“$(selector).attr(class,)”;2、用removeAttr()移除class属性,语法“$(selector).removeAttr(class)”。

方法:1、用attr()将class属性的值设为空,语法“$(selector).attr("class","")”;2、用removeAttr()移除class属性,语法“$(selector).removeAttr("class")”。

本教程操作环境:windows7系统、jquery1.10.2版本、Dell G3电脑。

jquery去除class属性有两种方法:

  • 使用attr()将元素中class属性的值设为空

    语法:$(selector).attr("class","")

  • 使用removeAttr()移除元素中的class属性

    语法:$(selector).removeAttr("class")

示例:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">

		<script src="js/jquery-1.10.2.min.js"></script>
		<script>
			$(document).ready(function() {
				$("button").click(function() {
					$(".box1").attr("class", "");
					$(".box2").removeAttr("class");
				});
			});
		</script>
		<style>
			div {
				border: 1px solid red;
				margin: 10px;
			}

			.box1 {
				background-color: #FFC0CB;
			}

			.box2 {
				background-color: green;
				color: white;
			}
		</style>
	</head>
	<body>

		<div class="box1">测试文本</div>
		<div class="box2">测试文本</div>
		<br>
		<button>去掉class属性</button>

	</body>
</html>

1.gif

相关视频教程推荐:jQuery视频教程

以上就是jquery怎么去除class属性的详细内容,更多请关注模板之家(www.mb5.com.cn)其它相关文章!


路过

雷人

握手

鲜花

鸡蛋
来自: 网络收集

全部回复(0)