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

本文介绍如何使用HTML和JavaScript实现表格行在鼠标悬停时背景颜色发生变化的效果,并提供了两种不同的实现方法。

首先,

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

<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 onmouseover="this.style.backgroundColor='#ffff66';" onmouseout="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"/>" onclick='return delconfirm()'>删除</a></td>
   </s:iterator>
</table>

可以在tr标签中直接加上  

<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_);
}
);
}); 

本文转自https://www.xuebuyuan.com/2041808.html,亲测有效。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值