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

首先,

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










 
 


   
   
   
   

   
等级得分每天最大得分等级得分上限等级得分下限功能操作
" οnclick='return delconfirm()'>删除

可以在前面直接加上  即可实现变色;

二、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






你可能感兴趣的:(js)