當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Web API HTMLBodyElement.bgColor用法及代碼示例


HTML BodyElement.bgColor屬性用於返回DOMString代表文檔的背景色。

用法:

BodyElement.bgColor

返回值:該屬性返回一個DOMString代表文檔的背景色。

範例1:

HTML

<!DOCTYPE html>  
<html>  
  
<!-- body tag starts here -->
<body bgColor="green">  
      
    <center>  
        <h1>GeeksforGeeks</h1>  
        <h2>HTMLBodyElement.bgColor Property</h2>  
          
    </center>   
    <script type="text/javascript"> 
        alert(document.body.bgColor); 
    </script> 
</body> 
  
</html>

輸出:



範例2:

HTML

<!DOCTYPE html>  
<html>  
  
<!-- body tag starts here -->
<body bgColor="yellow"> 
      
    <center>  
        <h1>GeeksforGeeks</h1>  
        <h2>HTMLBodyElement.bgColor Property</h2>  
          
    </center>   
    <script type="text/javascript"> 
        console.log(document.body.bgColor); 
    </script> 
</body> 
  
</html>

輸出:

支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • 蘋果Safari
  • Opera




相關用法


注:本文由純淨天空篩選整理自taran910大神的英文原創作品 Web API HTMLBodyElement.bgColor property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。