该问题主要是在ie8下对tr标签隐藏时,使用:visible这个选择器统计其个数时,会出现:visible失效


下面是一段官方的解释:
There is an open ticket for this. It is interesting because IE says that the TR element still has a width > 0 even though it isn't displayed. If you check the TD of the hidden TR, it is hidden.

 

现在的1.4.X版本仍然没有能够解决这个问题,所以对于tr标签在使用

 

:visible

这个选择器时需要额外处理一下

//请无视下面一行
t.theadVisible = $('thead tr:last th:visible', g.hDiv);
//ie8 下:visible 对于tr的bug,遍历所有对象,用css的display来判断
t.theadVisible = $.grep(t.theadVisible, function(n, i){
return $(n).css("display") !== 'none';
});

原文:http://fangbubu.javaeye.com/blog/718691

但是最新的 Jquery 1.4.4 解决了此问题.

相关文章:

  • 2022-12-23
  • 2021-04-04
  • 2021-09-10
  • 2021-10-07
  • 2021-11-06
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-05-26
  • 2021-06-28
  • 2022-02-15
  • 2022-12-23
  • 2022-01-27
  • 2022-12-23
相关资源
相似解决方案