获取页面z-index最大值
Posted 欧欧欧锋_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取页面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最大值的主要内容,如果未能解决你的问题,请参考以下文章