一,前言
- 样式操作: .css()方法。
- 大小操作: 设置或获取元素的Width和Height。
- 位置操作: 设置或获取元素相对于document,父级元素,滚动条的位置。
二,CSS操作
(1)样式操作
.css():设置或获取元素的样式,支持对象作为参数。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<script src="../static/js/jquery-3.7.1.min.js"></script>
<style>
.container {
background-color: aqua;
height: 100px;
}
</style>
<body>
<div class="container">盒子</div>
<p>我是文字</p>
<button id="btn1">添加样式</button>
<script>
console.log($(".container").css("background-color"))
$("#btn1").on("click", function () {
$("p").css("font-size", "20px");
$("p").css({
color: "red",
fontWeight: "bold"
})
})
</script>
</body>
</html>
使用对象作为参数时,样式命名符合驼峰式命名法。.css()方法好处是随时随地的去写,缺点就是复用性不高,耦合性太强,代码量上来的话修改难度大。实际开发中一般采用分离写法。通过addClass()方法整体添加。
(2)大小操作
- height(),width():获取元素本身的高度,宽度(不包含padding,border,margin)
- innerHeight(),innerWidth():获取元素本身高度,宽度 + padding(不包含border,margin)
- outerHeight,outerWidth():获取元素本身高度,宽度