关于background和backgroundColor
for(var i=0;i<as.length;i++){
as[i].onmouseover=function(){this.style.backgroundColor='grey';}
as[i].onmouseout=function(){this.style.backgroundColor='';}
as[i].onclick=function(){
cite.innerHTML=this.innerHTML;
}
}
简单的鼠标移入,改变背景颜色。
但是要注意:
如果使用background,设置为none和空都没有关系。
如果使用背景颜色backgroundColor,当想让鼠标移开是回复颜色就一定不要写成this.style.backgroundColor='none';
因为backgroundColor没有none这个颜色!!!
虽然看起来简单,可是发现这个原因的时候还是(╯﹏╰)b
//一拖再拖的博客终于开工了,慢慢把之前的知识点做一些总结。我也开始尝试啦( ̄▽ ̄)~*