博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery 操作表格实例
阅读量:6819 次
发布时间:2019-06-26

本文共 2230 字,大约阅读时间需要 7 分钟。

案例1:隔行变色,滑动,点击变色以(选中取消效果)(addClass(),removeClass(),toggleClass()

Html:

1.隔行变行

name 特长 QQ
eric 擅长java 249056406
mike 擅长js,css,ps 249056406
jick 擅长sql,oracle 249056406
Css:table{font-size:12px;border-collapse:collapse;border:1px solid #A9C9E2;} td,th{padding:5px;border:1px solid #A9C9E2;} tr{cursor:pointer;} .tab01{background:#EEFAFF;} tr.even{background:#F0FBEB;} tr.highlight,td.highlight,th.highlight{background:#FFFFDD;} //highlight类供js动态添加 tr.selected{background:#C2ECA7;}(注意:因为tr.even设置了颜色,highlight必须指明tr、td、th,不然tr.even不起效果)js: $('.tab01 tr:even').addClass('even'); //滑动 $('.tab01 tr:not(:first)').hover(function(){ $(this).addClass('highlight'); }, function(){ $(this).removeClass('highlight'); }); //点击变色 $('.tab01 tr:not(:first)').click(function(){ $(this).toggleClass('selected'); }); //表头滑动 $('.tab01 th').hover(function(){ var colindex = $(this).index(); $('.tab01 td:nth-child(' + (colindex + 1) + '),.tab01 th:nth-child(' + (colindex + 1) + ')').addClass('highlight'); //选中列添加highlight类 }, function(){ $('.tab01 tr').children().removeClass('highlight'); });

2.如上表格中添加一列按钮,选中行按钮打钩以及行变色(hasClass,removeClass,removeAttr,)

Js://默认选中的添加样式 $('.tab02 input[type="checkbox"]:checked').parents('tr').addClass('selected');$(".tab02 tr:not(:first)").click(function(){        if($(this).hasClass("selected")){         $(this).removeClass("selected");         $(this).find('input[type="checkbox"]').removeAttr("checked");     }    else{        $(this).addClass("selected");        $(this).find('input[type=checkbox]').attr("checked","checked");    }});

 

转载于:https://www.cnblogs.com/qinyi173/p/4989997.html

你可能感兴趣的文章