JavaScript 如何实现点击DIV外边,改变此DIV属性
发布网友
发布时间:2022-05-12 07:25
我来回答
共1个回答
热心网友
时间:2022-04-22 17:02
<div id="div1" style="width:200px; height:200px; background-color:red">DIV1
<div id="div2" style="width:100px; height:100px; background-color:green; margin:50px 0 0 50px">Div2</div>
</div>
<script>
window.onload=function(){
document.getElementById("div1").onclick=function(e){
if((e||event).target==this)this.style.backgroundColor="blue";
}
}
</script>