for(var i=0;i<as.length;i++){ as[i].onmouseover=function(){this.style.backgroundColor='grey';} as[i].onmouseout=function(){this.style.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
//一拖再拖的博客終於開工了,慢慢把之前的知識點做一些總結。我也開始嘗試啦( ̄▽ ̄)~*