获取当前最大z-index

[...document.all].reduce((r, e) => Math.max(r, +window.getComputedStyle(e).zIndex || 0), 0)

在element-ui中,可以统一使用PopupManager管理

import { PopupManager } from 'element-ui/lib/utils/popup'

PopupManager.nextZIndex()

你可能感兴趣的:(获取当前最大z-index)