以下是重现问题的示例html。
<html>
<head>
<title>Title</title>
</head>
<body>
<h1 id="head">Header1</h1>
</body>
<script>
var element = document.getElementById("head");
element.style.color = 'red';
</script>
</html>
样式在firefox和chrome中运行良好;但不是在IE中。 关于此问题的所有答案都建议使用上述方法使其在浏览器中运行。但是这个简单的样本不起作用。