修改css属性
方法一: $().css("属性",属性值"")
注意如果括号内只有属性则返回该属性的值。
方法二: $().css({属性:属性值,·····})
代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script src="./jquery-3.6.0.js"></script>
<style>
</style>
<script>
$(function () {
$("button:eq(0)").css("height","500px")
console.log($("button:eq(0)").css("height"));
$("button").css({
width:"200px",
height:"200px",
backgroundColor:"aqua"
})
});
</script>
</head>
<body>
<button></button>
<button></button>
<button></button>
<button></button>
</body>
</html>
效果:
设置类样式方法
添加类
addClass("类名")
移除类
removeClass("类名")
转换类
toggleClass("类名")
注意:类名不需要加点
代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script src="./jquery-3.6.0.js"></script>
<style>
.a{
width: 200px;
height: 200px;
background-color: aqua;
}
</style>
<script>
$(function(){
$("button").click(function(){
$(this).toggleClass("a");
})
})
</script>
</head>
<body>
<button></button>
<button></button>
<button></button>
<button></button>
</body>
</html>
效果:
|