divエリアの外をクリックしても効果はありますか? </p> <p>
document.getElementById("red").addEventListener("click",function(){
document.getElementById("red").style.backgroundColor = "yellow";
document.getElementById("red").style.color = "#000";
});
document.getElementById("green").addEventListener("click",function(){
document.getElementById("red").style.backgroundColor = "red";
document.getElementById("red").style.color = "#fff";
});
#red{
width:50px;
height:100px;
background-color:red;
color:#fff;
text-align:center;
margin-bottom:10px;
}
#green{
width:100px;
height:50px;
background-color:green;
color:#fff;
text-align:center;
}
<div id="red">div area1</div>
<div id="green"> div area2</div>
TNXです –