7

无论它们是什么标签,如何在文档中找到最高的 z-index?

我找到了这段代码,但我测试了它,但它不起作用,

//include jQuery.js --  visit: http://jquery.com/
$(function(){
    var maxZ = Math.max.apply(null,$.map($('body > *'), function(e,n){
           if($(e).css('position')=='absolute')
                return parseInt($(e).css('z-index'))||1 ;
           })
    );
    alert(maxZ);
});

有更好的方法来做到这一点吗?

编辑:

如果我将代码更改为此,它似乎可以工作,

$('body *')

$('body > *') --> is for div only I guess.
4

3 回答 3

6

这不是最有效的解决方案,但应该可以。js小提琴

请注意,您必须指定位置才能使 z-index 返回值。

var highest = -999;

$("*").each(function() {
    var current = parseInt($(this).css("z-index"), 10);
    if(current && highest < current) highest = current;
});

alert(highest);
于 2013-07-16T20:57:49.323 回答
3

这似乎有效:

var maxZ=0;
$('*').each(function(){
    if($(this).css('zIndex') > maxZ) maxZ = $(this).css('zIndex');
})
console.log(maxZ);

jsFiddle 示例

我认为您发布的代码的问题之一是您只检查绝对定位的元素。

于 2013-07-16T20:58:51.783 回答
2

只是添加一个没有 jQuery 的解决方案:

const all = Array.from(document.querySelectorAll('body *'));
console.log('Found ',all.length,' elements');
const allIndexes = all.map((elem) => {
  if (elem.style) {
    return +elem.style.zIndex || 0;
  }
  return -Infinity;
});

const max = Math.max.apply(null, allIndexes);
console.log('Max z-index:', max);
.cl {
position: absolute;
border: 1px solid;
}
<div class="cl" style="z-index: 3;width:100px;height:100px;background:#A00;"></div>
<div class="cl" style="z-index: 4;width:90px;height:90px;background:#0A0;"></div>
<div class="cl" style="z-index: 5;width:50px;height:50px;background:#AA0;"></div>
<div class="cl" style="z-index: 6;width:40px;height:40px;background:#AAA"></div>

于 2018-04-05T17:03:10.767 回答