回答
繼承人快速解決方案
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript">
function changeColor(color){
var div = document.getElementById('box');
div.style.backgroundColor = color;
}
</script>
</head>
<body onload="changeColor('green')">
<div id="box" style="width:200px; height:200px;"></div>
<a href="#" onclick="changeColor('yellow')">Yellow</a>|
<a href="#" onclick="changeColor('green')">Green</a>|
<a href="#" onclick="changeColor('blue')">Blue</a>|
<a href="#" onclick="changeColor('white')">White</a>
</body>
</html>
我得到這個工作就像一個魅力!謝謝! – Liza
JS:
var els = document.getElementsByClassName('change-color'),
target = document.getElementById('target'),
changeColor = function(){
target.style.backgroundColor = this.getAttribute('data-color');
};
for(var i=els.length-1; i>=0; --i){
els[i].onclick = changeColor;
}
HTML:
<div id="target"></div>
<button class="change-color" data-color="red">Red</button>
<button class="change-color" data-color="#000">Black</button>
<button class="change-color" data-color="rgb(0,0,255)">Blue</button>
注意,如果你希望所有換色是同一元素的孩子,你可以使用事件代表團與前面的代碼減少
JS:
document.getElementById('color-changers').onclick = function(e) {
var color = (e ? e.target : window.event.srcElement).getAttribute('data-color');
if(color){
target.style.backgroundColor = color;
}
}
HTML:
<div id="target"></div>
<div id="color-changers">
<button data-color="red">Red</button>
<button data-color="#000">Black</button>
<button data-color="rgb(0,0,255)">Blue</button>
</div>
謝謝!我是這樣一個新手抱歉!我把JavaScript放在我的頭文件中,我使用了CSS代碼和html,div顯示出來,按鈕顯示出來,我可以點擊它們,但顏色不會改變。我看到它在jsfiddle上工作,所以我不知道我做錯了什麼。 – Liza
@Liza你應該把javascript放在你身體的盡頭(在'
http:// stackoverflow .com/q/1874560/395255 – Asdfg
jquery將幫助很多 – Hanfeng