下面有更多 "亲自试一试" 示例。
backgroundImage 属性设置或返回元素的背景图片。
提示:除了背景图片之外,您还应该指定背景颜色。如果图片不可用,将使用背景颜色。
返回背景图片属性:
object.style.backgroundImage
设置背景图片属性:
object.style.backgroundImage = "url('
URL')|none|initial|inherit"
Value | Description |
---|---|
url('URL') | The location of the image file |
none | No background image. This is default |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
默认值: | 没有任何 |
---|---|
返回值: | 一个字符串,代表背景图片 |
CSS版本 | CSS1 |
backgroundImage
是 CSS1 (1996) 的一项功能。
所有浏览器都完全支持它:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |
设置特定 <div> 元素的背景图片:
document.getElementById("myDiv").style.backgroundImage = "url('img_tree.png')";
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!