1
以下の関数呼び出しを実行すると、このエラーが返されます。 "Uncaught TypeError: のプロパティ 'backgroundColor'を読み取れません。" .jumbotronというクラスの背景色を変更しようとしています。私は今までのことをすべて試すことができました。未定義のプロパティ 'backgroundColor'を読み取ることができません
Could anyone tell me why this is happening?
clrElementJumbo("cornsilk");
function clrElementJumbo(scolor) {
var el = document.getElementsByClassName("jumbotron");
el.style.backgroundColor = scolor;
}