<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
width:200px;
height:200px;
background-color:pink;
}
</style>
</head>
<body>
<div class="box"></div>
<script>
// 1.获取元素
const box = document.querySelector('.Fbox')
// 2.修改样式属性 对象.style.样式属性='值'
box.style.width = '500px'
box.style.backgroundColor='hotpink'
</script>
</body>
</html>
照着学习视频上的代码搞的但是style识别为null了,之前的学习视频也有log识别失败得用dir
这个识别为null的错误是因为最新版google引起的吗