esxi的彈出窗口會(huì)應(yīng)用一個(gè)modal-backdrop的類,這個(gè)類edge瀏覽器兼容有問題,把他刪了能正常使用,彈出的位置和遮罩會(huì)有點(diǎn)問題,不過不影響功能,可以先用著
需要用到油猴腳本:
// ==UserScript==
// @name EDGE兼容ESXI
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://esxi.bugchang.top/* 這個(gè)根據(jù)自己實(shí)際的ESXI地址更改
// @icon
// @grant none
// ==/UserScript==
(function() {
'use strict';
var observer = new MutationObserver((mutationsList) => {
mutationsList.forEach(mutationRecord => {
mutationRecord.addedNodes.forEach(node => {
if(node.classList.contains('modal-backdrop')) node.classList.remove('modal-backdrop')
});
});
});
observer.observe(document.body, {childList:true});
})();