视图树控件在鼠标移动上去时和鼠标点击时会出现白色背景,如何在不引用css文件的情况下通过初始化js去除这个白色背景
js一样可以引入css
在初始化事件js中加上这样一段:
const style = document.createElement('style');
style.innerText = ` g {fill: white !important; }`;
document.head.appendChild(style);
---
其中的g {fill: white !important; } 替换成你的css就行了
记得加上!important强制最高优先级