-------------------------------------------
语句没问题,加一个延时
setTimeout(function() {
你原来的js语句;
}, 800);
================
不行的话
改成定时函数
setInterval(function() {
}, 500);
让css持续生效:
const style = document.createElement('style');
style.innerText = `.fr-checkbox-list.fr-combo-list {background: none !important; }`;
document.head.appendChild(style);