const head = document.getElementsByTagName('head')[0]
this.cssDom = document.createElement('style')
this.cssDom.setAttribute('type', 'text/css')
this.cssDom.setAttribute('id', `css-add`)  // 增加style的id
this.cssDom.innerHTML = this.cssValue
head.appendChild(this.cssDom)  // 增加

head.removeChild(this.cssDom)  // 删除

版权声明:本文为MySundays原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/MySundays/article/details/121554549