如何样式里加onmouseover?
我想在css里加上个鼠标滑入变化td的背景颜色请问高手样式该咋写?多谢!.banner{onmouseover:background-Color:#E8E8E8;onmo...
我想在css里加上个 鼠标滑入变化td的背景颜色
请问高手 样式该咋写?多谢!
.banner{
onmouseover:background-Color: #E8E8E8;
onmouseout:background-Color: #ffffff;
}
就是这种样子的 但是我这写的有问题 展开
请问高手 样式该咋写?多谢!
.banner{
onmouseover:background-Color: #E8E8E8;
onmouseout:background-Color: #ffffff;
}
就是这种样子的 但是我这写的有问题 展开
3个回答
展开全部
'这个事件不应写在CSS里.按下面写,这样写你还可以将TD中的其它元素属性变更下,例如字体,大小...
.banner{background-Color: #ffffff;}
.banner1{background-Color: #E8E8E8;}
'在对象里这样写
<td class="banner" onmouseover="this.className='banner1'" onmouseout="this.className='banner'">....</td>
.banner{background-Color: #ffffff;}
.banner1{background-Color: #E8E8E8;}
'在对象里这样写
<td class="banner" onmouseover="this.className='banner1'" onmouseout="this.className='banner'">....</td>
展开全部
<table>
<tr>
<td onmouseover=this.style.backgroundColor='#FFFFCC' onmouseout=this.style.backgroundColor='#DDDDDD'><a href="#">TDTDTD</A></td>
<td onmouseover=this.style.backgroundColor='#CCCCCC' onmouseout=this.style.backgroundColor='#EEEEEE'><a href="#">tdtdtd</A></td>
</tr>
</table>
<tr>
<td onmouseover=this.style.backgroundColor='#FFFFCC' onmouseout=this.style.backgroundColor='#DDDDDD'><a href="#">TDTDTD</A></td>
<td onmouseover=this.style.backgroundColor='#CCCCCC' onmouseout=this.style.backgroundColor='#EEEEEE'><a href="#">tdtdtd</A></td>
</tr>
</table>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<style type="text/css">
table{cursor:hand;}
td{
onmouseover: expression(onmouseover=function (){this.style.backgroundColor ='yellow'});
onmouseout: expression(onmouseout=function (){this.style.backgroundColor =''});
}
</style>
table{cursor:hand;}
td{
onmouseover: expression(onmouseover=function (){this.style.backgroundColor ='yellow'});
onmouseout: expression(onmouseout=function (){this.style.backgroundColor =''});
}
</style>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询