尝试将
style元素添加到
head而不是
body。
这已在IE(7-9),Firefox,Opera和Chrome中进行了测试:
var css = 'h1 { background: red; }', head = document.head || document.getElementsByTagName('head')[0], style = document.createElement('style');head.appendChild(style);style.type = 'text/css';if (style.styleSheet){ // This is required for IE8 and below. style.styleSheet.cssText = css;} else { style.appendChild(document.createTextNode(css));}


