首頁  >  文章  >  web前端  >  javascript怎麼改變背景

javascript怎麼改變背景

青灯夜游
青灯夜游原創
2021-06-23 13:58:008596瀏覽

javascript改變背景的方法:首先使用“document.getElementById('id值')”語句取得指定元素物件;然後使用“元素物件.style.background="背景顏色值或圖片路徑"”語句設定背景即可。

javascript怎麼改變背景

本教學操作環境:windows7系統、javascript1.8.5版、Dell G3電腦。

javascript改變背景

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<style>
	#div{
		height: 200px;
		background: url(img/1.jpg) no-repeat;
	}
</style>
<script>
function displayResult(){
	document.getElementById(&#39;h1&#39;).style.background="paleturquoise";
	document.getElementById(&#39;div&#39;).style.background="url(img/2.jpg) no-repeat";
}
</script>
</head>
<body>

<h1 id="h1" style="background: red;">Hello World!</h1>
<div id="div"></div>
<br>
<button type="button" onclick="displayResult()">改变背景</button>

</body>
</html>

效果圖:

javascript怎麼改變背景

##說明:

getElementById() 方法可傳回擁有指定ID 的第一個物件的參考。

  • 如果沒有指定 ID 的元素傳回 null

  • #如果存在多個指定 ID 的元素則傳回第一個。

background 屬性在一個宣告中設定所有的背景屬性。

設定 background 屬性的語法:

Object.style.background="color image repeat attachment position"

更多程式相關知識,請造訪:

程式設計影片! !

以上是javascript怎麼改變背景的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn