高亮显示

来源:互联网 发布:沙盘软件多开器 编辑:程序博客网 时间:2024/05/29 09:05
<script>
$(function(){

$("tr").hover(function(){
$(this).addClass("curr");
},function(){
$(this).removeClass("curr");
})
$("tr:odd").css("background-color","#CCCCCA");
})

</script>


<style>
.curr{
background-color: #00ff00;
}



table tr:nth-child(2n){
background-color: #CCCCCA;
}
</style>

原创粉丝点击