当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Style backgroundImage属性用法及代码示例


backgroundImage 属性用于设置或返回元素的背景图像。

用法

以下是语法 -

设置 backgroundImage 属性:

object.style.backgroundImage = "url('URL')|none|initial|inherit"

上述属性值解释如下 -

Sr.No值和描述
1url('URL')
用于指定图像文件位置。
2none
用于指定不使用背景图像,它是默认值。
3initial
用于将此属性设置为初始值。
4inherit
继承父属性值。

示例

让我们看一下 backgroundImage 属性的示例 -

<!DOCTYPE html>
<html>
<head>
<style>
   #DIV1 {
      height:300px;
      width:500px;
      background-image:url("https://www.tutorialspoint.com/mongodb/images/mongodb-minilogo.jpg");
      background-repeat:no-repeat;
      background-size:cover;
   }
</style>
<script>
   function changeBackImage(){
      document.getElementById("DIV1").style.backgroundImage="url('https://www.tutorialspoint.com/plsql/images/plsql-mini-logo.jpg')";
      document.getElementById("Sample").innerHTML="The background image is now changed to PL/SQL Tutorial";
   }
</script>
</head>
<body>
<h2>Learn</h2>
<div id="DIV1"></div>
<p>Change the above div background image by clicking the below button</p>
<button onclick="changeBackImage()">CHANGE IMAGE</button>
<p id="Sample"></p>
</body>
</html>

输出

这将产生以下输出 -

单击更改图像按钮 -

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Style backgroundImage Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。