?
?
<!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>
div{
height: 1000px;
background-image: url(./uploads/desktop_1.jpg);
}
</style>
</head>
<body>
<div>
</div>
<script>
let number=parseInt(Math.random()*10+1)
const p=document.querySelector('div')
p.style.backgroundImage=url(`./uploads/desktop_${number}.jpg`)
</script>
</body>
</html>
?
?
可以看到我给p.style.backgroundImage赋值的时候把里面反引号了。但是错了,因为前面的是变量。只能给它一个字面值,你里面写了反引号,那整个是什么类型的字面值呢?啥也不是。我们在CSS/style上写backgoundImage:url()它浏览器会自己赋值,给一个字符串。所以我们应该在外面放反引号。url里面不是字符串就是直接写路径。直接取url()这个字符串得到里面字符串找。