var style = document.createElement('style');
style.innerHTML = 'content';
document.head.appendChild(style);
如果要添加 CSS 文件
var link = document.createElement('link');
link.setAttribute('rel', 'stylesheet');
link.setAttribute('href', 'css/my.css');
document.head.appendChild(link);