英 [ˈbækgraʊnd]   美 [ˈbækˌɡraʊnd]  

n.(畫等的)背景;底色;背景資料;配樂

backgrounds####n.

javascript background屬性 語法

作用:設定所有的背景屬性。

語法:Object.style.background=background-color background-image,background-repeat ,background-attachment ,background-position

#參數:background-color    設定元素的背景色。 background-image    設定背景影像。 background-repeat    設定背景影像是否及如何重複。 background-attachment    背景圖像是否固定或隨著頁面的其餘部分滾動。 background-position    設定背景影像的起始位置。

javascript background屬性 範例

<html>
<head>
<script type="text/javascript">
function setStyle()
{
document.body.style.background="#FFCC80 url(http://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg) repeat-y";
}
</script>
</head>
<body>

<input type="button" onclick="setStyle()"
value="Set background style" />

</body>
</html>

執行實例 »

點擊 "執行實例" 按鈕查看線上實例