English 中文(简体)
g 不通过 JavaScript 更新的颜色
原标题:bgColor not updating via JavaScript
  • 时间:2012-05-23 23:59:00
  •  标签:
  • javascript

为什么 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, 但是它没有背景颜色, 尽管控制台说它是“ 黄” 。

最佳回答

它不是bgColor, 这是一种过时的设置背景颜色的方式,

您想要设置 CSS 属性 < a href=" https:// developmenter.mozilla. org/ en/ CSS/backflor- color" rel= "noreferrer" > backform- color 。 当您用 JavaScript 设置该属性时, 您要删除破折线并使用 columCase。 您想要设置背景颜色 。

this.element.style.backgroundColor
问题回答

http://www.w3.org/TR/DOM-level-2-Style/css.html#CSS-CSS2Propertys-backround Color" rel=“nofollow”>cs 属性为broundColor ,而不是 bgColor

您的主控台说 < code> "yellow" , 因为它读取了 < code> bgColor 属性 - 它只是不影响显示 - 而且也没有包含在您用元素源登录的样式属性中 。





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签