zoukankan      html  css  js  c++  java
  • jQuery的表格隔行变色效果

  • var $j=jQuery.noConflict();   
  • $j(document).ready(function() {   
  •   
  •    $j("#listBody table tr").hover(function(){$j(this).addClass("over");},function(){$j(this).removeClass("over");});   
  •       
  •   $j("#listBody table tr:odd").addClass("alt");   
  • });  
查看全文
  • 相关阅读:
    leetcode 137
    leetcode 134
    133. Clone Graph
    leetcode 131
    leetcode 130
    mac uwsgi ssl issue handler
    leetcode 85 Maximal Rectangle golang
    leetcode 84 golang
    leetcode 61
    C# 后台实现一次上传多个文件
  • 原文地址:https://www.cnblogs.com/luluping/p/1181519.html
  • Copyright © 2011-2022 走看看