jQuery特效 隔行变色

1.通过使用onmouseover onmouseout方法
2.变色使用background-color(css)属性
3.变色的标签是td(tr只能使用事件,颜色样式不起作用)
第一种方法 使用样式操作
<style>
.tr_color{
 background-color:#ffffff;
}


.tr_color_hover{
 background-color:blanchedalmond;
}
</style>
<script type="text/javascript">
function mover(obj){
 $(obj).children("td").each(function(){
   $(this).removeClass("tr_color");
   $(this).addClass("tr_color_hover");
 }) } 
function mback(obj){
 $(obj).children("td").each(function(){
  $(this).removeClass("tr_color_hover");
  $(this).addClass("tr_color");
})}
</script>
 <tr onmouseover="mover(this)" onmouseout="mback(this)">
      <td height="18" class="tr_color">
</tr>


第二种方法 直接对背景色操作
<script type="text/javascript">
function mover(obj){
 $(obj).children("td").each(function(){
   $(this).attr("bgColor","#eafcd5")
 }) } 
function mback(obj){
 $(obj).children("td").each(function(){
   $(this).attr("bgColor","#FFFFFF")
})}
</script>
 <tr onmouseover="mover(this)" onmouseout="mback(this)">
      <td height="18"bgColor="#FFFFFF">
</tr>

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。