IE不认的
<div id="qwbmids"></div>
<script>
document.getElementById("qwbmids").innerHTML += "<style>strong{color:red}</style><strong>hello!World!!!</strong>";
</script>
IE正常显示
<div id="qwbmids"></div>
<script>
document.getElementById("qwbmids").innerHTML += "<这里随便插入一个标签就能正常显示出来>__<style>strong{color:red}</style><strong>hello!World!!!</strong>";
</script>
只要有任意一个其它html元素就行了,比如br,pre,div等。