getMaxZIndex = function () {
    var maxZ = Math.max.apply(null, 
      $.map($('body *'), function(e,n) {
        if ($(e).css('position') != 'static')
          return parseInt($(e).css('z-index')) || 1;
    }));
    return maxZ;
};

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-23
  • 2021-09-30
  • 2022-12-23
  • 2021-07-30
  • 2021-11-19
  • 2021-06-27
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-25
  • 2021-11-13
  • 2021-07-27
  • 2022-12-23
  • 2021-08-10
相关资源
相似解决方案