国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
834B

  1. $(document).ready(function(){
  2. //表格奇偶行不同样式
  3. $(".list tbody tr:even").addClass("row0");//偶行
  4. $(".list tbody tr:odd").addClass("row1");//奇行
  5. $(".submit tbody tr:even").addClass("row0");//偶行
  6. $(".submit tbody tr:odd").addClass("row1");//奇行
  7. //修正IE6下hover Bug
  8. if (typeof $.browser !== "undefined"){
  9. if($.browser.version == '6.0'){
  10. $("#menuBody li").hover(
  11. function(){
  12. //进行判断,是否存在
  13. //先设置所有.act为隐藏
  14. $(".act").each(function(){this.style.visibility='hidden'});
  15. if($(this).find(".act").length != 0)
  16. {
  17. $(this).children(".act").css("visibility","visible");
  18. } else {
  19. $(".act").css("visibility","hidden");
  20. }
  21. }
  22. )
  23. }
  24. }
  25. })