• css一般的表格样式


     1   <script type="text/javascript">
     2         $(function () {
     3             //单击选中
     4             $('.sorttablebody tr').click(function () {
     5                 $(this).addClass('trSel');
     6             });
     7 
     8             //单击选中,再单击其他行,该行取消选中
     9             $('.sorttablebody tr').click(function () {
    10                 $('.sorttablebody tr').attr("class", "");
    11                 $(this).addClass('trSel');
    12             });
    13             $('.sorttablebody tr').toggle(
    14                  function () {
    15                      $(this).addClass('trSel');
    16                  },
    17                 function () {
    18                     $(this).removeClass('trSel');
    19                 }
    20              );
    21 
    22 
    23             $(function () {
    24                 //光棒
    25                 $('tr').hover(
    26                     function () {
    27                         $(this).addClass('on');
    28                     },
    29                     function () {
    30                         $(this).removeClass('on');
    31                     }
    32              );
    33                 //单击选中,再单击该行取消选中
    34                 $('tr').toggle(
    35                         function () {
    36                             $(this).css('background', '#FC6');
    37                         },
    38                         function () {
    39                             $(this).css('background', '');
    40                         }
    41                     );
    42             });
    43         });
    44 
    45     </script>
    onmouseover="currentcolor=this.style.backgroundColor;this.style.backgroundColor='blue'" onmouseout="this.style.backgroundColor=currentcolor"
  • 相关阅读:
    LeetCode#22 Generate Parentheses
    重传
    数学问题——gcdgcl
    数学问题——十进制转N进制
    数据模型
    IEEE
    格与代数系统
    数据字典
    贪心算法
    群论
  • 原文地址:https://www.cnblogs.com/lccnblog/p/3210228.html
Copyright © 2020-2023  润新知