1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > 鼠标划过表格行变色效果JS

鼠标划过表格行变色效果JS

时间:2023-05-20 01:07:26

相关推荐

鼠标划过表格行变色效果JS

<!--鼠标滑过表格行变色效果开始-->

<script type="text/javascript">

/* 当鼠标移到表格上是,当前一行背景变色 */

$(document).ready(function(){

$(".g-sun-li tr td").mouseover(function(){

$(this).parent().find("td").css("background-color","#fff2cc");

});

})

/* 当鼠标在表格上移动时,离开的那一行背景恢复 */

$(document).ready(function(){

$(".g-sun-li tr td").mouseout(function(){

var bgc = $(this).parent().attr("bg");

$(this).parent().find("td").css("background-color",bgc);

});

})

$(document).ready(function(){

var color="#f7f7f7"

$(".g-sun-li tr:odd td").css("background-color",color); //改变偶数行背景色

/* 把背景色保存到属性中 */

$(".g-sun-li tr:odd").attr("bg",color);

$(".g-sun-li tr:even").attr("bg","#fff");

})

</script>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。