首页 > 代码库 > 获取页面z-index最大值

获取页面z-index最大值

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;
};

 

获取页面z-index最大值