11 lines
325 B
JavaScript
11 lines
325 B
JavaScript
|
|
export function resetZIndex(e){
|
||
|
|
let popId=e.target.getAttribute('aria-describedby');//这里获取的属性 在包含slot='reference'
|
||
|
|
if(!popId){
|
||
|
|
popId=e.target.parentNode.getAttribute('aria-describedby');
|
||
|
|
}
|
||
|
|
let pop=document.getElementById(popId);
|
||
|
|
setTimeout(function(){
|
||
|
|
pop.style.zIndex=999999;
|
||
|
|
},100)
|
||
|
|
}
|