运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>HTML Style Object</h1> <h2>The backgroundImage Property</h2> <p>The background image is:</p> <p id="demo"></p> <div id="myDiv" style="background-image:url('img_tree.png');border:1px solid black;height:400px;width:400px;"> This is myDiv.</div> <br> <script> let img = document.getElementById("myDiv").style.backgroundImage; document.getElementById("demo").innerHTML = img; </script> </body> </html>