按标记名查找最高Z索引
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按标记名查找最高Z索引相关的知识,希望对你有一定的参考价值。
function findHighestZIndex(elem) { var elems = document.getElementsByTagName(elem); var highest = 0; for (var i = 0; i < elems.length; i++) { var zindex=document.defaultView.getComputedStyle(elems[i],null).getPropertyValue("z-index"); if ((zindex > highest) && (zindex != 'auto')) { highest = zindex; } } return highest; }
以上是关于按标记名查找最高Z索引的主要内容,如果未能解决你的问题,请参考以下文章