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) // 删除