代碼如下
1.html代碼
<div id="head">
<div id="one"></div>
</div>
2.css代碼
*{
padding: 0px;
margin:0px;
}
#head{
position:relative;
width: 200px;
height: 200px;
}
#one{
width: 200px;
height: 200px;
background-color: red;
}
#two{
width: 200px;
height: 200px;
background-color: green;;
}
3.js代碼
var head =document.getElementById('head');
var one =document.getElementById('one');
var two =document.getElementById('two');
var i=0;
one.onclick =function(){
if (i==0) {
one.style.background="green"
i=1;
}else{
one.style.background="red"
i=0;
}
}
遠近互聯技術小向整理發(fā)布,希望能對同是技術的你有所幫助。
遠近互聯專業(yè)提供網站建設、APP開發(fā)、網站優(yōu)化、外貿網站SEO、微信運營的品牌整合營銷服務,讓客戶通過網絡品牌建立與網絡傳播提高業(yè)績。






