关于jsp中tr鼠标移动变色,有底色如何变色

首先,

一、如果原表格没有底色的情况下:

<table border="1"  style="font-size:15px">
<tr  >
<td width="200px" align="center">等级</td>
<td width="200px" align="center">得分</td>
<td width="200px" align="center">每天最大得分</td>
<td width="200px" align="center">等级得分上限</td>
<td width="200px" align="center">等级得分下限</td>
<td width="200px" align="center">功能操作</td>
</tr>
  <s:iterator value="%{ranklist}">
  <tr οnmοuseοver="this.style.backgroundColor='#ffff66';" οnmοuseοut="this.style.backgroundColor='#d4e3e5';">
<td width="200px" align="center"><s:property value="rankNum"></s:property></td>
   <td width="200px" align="center"><s:property value="point"></s:property></td>
   <td width="200px" align="center"><s:property value="maxPointEveryday"></s:property></td>
   <td width="200px" align="center"><s:property value="rankMaxPoint"></s:property></td>
   <td width="200px" align="center"><s:property value="rankMinPoint" ></s:property></td>
<td width="200px" align="center"><a href="RankTable!delRank.action?rankvo.rankNum=<s:property value="rankNum"/>" οnclick='return delconfirm()'>删除</a></td>
   </s:iterator>
</table>

可以在前面直接加上  <tr οnmοuseοver="this.style.backgroundColor='#ffff66';" οnmοuseοut="this.style.backgroundColor='#d4e3e5';">即可实现变色;

二、td有底色的情况下:

首先在样式中加上.hover{background-color:#FF0000;} 

然后

$(function(){ 
$('tr').hover(
_mouse_on_=function(){
this._bg=this.style.backgroundColor;
$(this).css('background', 'bisque').find('>td').each(_mouse_on_);
}, 
_mouse_off_=function(){
$(this).css('background', this._bg).find('>td').each(_mouse_off_);
}
);
}); 

即可实现

如果好用请给个好评谢谢

java交流群252799892 相互学习 希望大家把这个群带动起来谢谢!2799892






  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值