我正在尝试使用getElementsByClassName更改文本颜色。 。解释为什么javascript无法实现这一目标?
document.getElementsByClassName("myH1").style.text-color = "red";
<h1 class="myH1">How to change the style of a header</h1>
未捕获的TypeError:无法设置属性&#39; color&#39;未定义的
document.getElementsByClassName("myH1").style.color = "red";