div の背景色が更新されないのはなぜですか?
Tagger.prototype.mouseDown = function(event) {
this.element.style.posLeft = event.clientX;
this.element.style.width = 200 + "px";
this.element.style.height = 200 + "px";
this.element.style.position = "absolute";
this.element.style.zIndex = 10;
this.element.style.bgColor = "yellow";
console.log(this.element);
console.log(this.element.style.bgColor);
}
コンソール出力は次のとおりです。
<div id="tagbox4" class="tagbox" style="width: 200px; height: 200px; position: absolute; z-index: 10;">
yellow
ブラウザーで要素を調べて div を選択できますが、コンソールに「黄色」と表示されていても背景色がありません。