gpt4 book ai didi

javascript - 如何动态加载/卸载css

转载 作者:行者123 更新时间:2023-12-04 10:27:04 24 4
gpt4 key购买 nike

我知道如何加载 CSS。

injectCss(styles) {
let styleSheet = document.createElement("style");
styleSheet.type = 'text/css';
styleSheet.innerText = styles;
document.head.appendChild(styleSheet);
}

如何卸载?

最佳答案

试试这个:

function injectCss(styles) {
let styleSheet = document.createElement("style");
styleSheet.type = 'text/css';
styleSheet.setAttribute("id", "dunamicstylesheet");
styleSheet.innerText = styles;
document.head.appendChild(styleSheet);
}

//Create-styleSheet
injectCss('dynamic.css');

//remove-styleSheet
var stylesheet = document.getElementById('dunamicstylesheet');
stylesheet.parentNode.removeChild(stylesheet);

关于javascript - 如何动态加载/卸载css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60593614/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com