今天犯了一个错误:设置dom元素的style
<!DOCTYPE html>
<html>
<head>
<title>text</title>
</head>
<body>
<div id="content" style="width:200px;height:200px"></div>
<script>
document.querySelector('#content').style = 'background-color:red;width:200px;height:200px'
</script>
</body>
</html>