如何使用JavaScript设置HTML的CSS背景颜色


Answers:


155

通常,将CSS属性转换为JavaScript的方式是将它们变成驼峰式(CamelCase)而没有任何破折号。如此background-color成为backgroundColor

function setColor(element, color)
{
    element.style.backgroundColor = color;
}

// where el is the concerned element
var el = document.getElementById('elementId');
setColor(el, 'green');

3
我想添加颜色显然需要用引号element.style.backgroundColor =“ color”; 例如-element.style.backgroundColor =“ orange”; 出色的答案
卡托

在Selenium测试中:(((IJavaScriptExecutor)WebDriver).ExecuteScript(“ arguments [0] .style.background ='yellow';”,webElement);
nexoma

@Catto在这种情况下,color是函数的参数,因此它不应用引号引起来。但是,通常在设置颜色时,在JS中必须使用双引号是正确的。
巴拉特·马拉马普

29

如果将所有样式保留在CSS中,而仅在JavaScript中设置/取消设置类名,则可能会发现代码更易于维护。

您的CSS显然是这样的:

.highlight {
    background:#ff00aa;
}

然后在JavaScript中:

element.className = element.className === 'highlight' ? '' : 'highlight';

2
我想说的是,放置在任何地方都很明显-您想要更改的HTML之后的任何地方。
TeeJay 2014年

1
在大多数情况下这是有效的,但在配置中定义颜色(或任何属性)或用户输入的情况下则无效,您不能为每种可能的颜色创建CSS类;)
Juan Mendes

23
var element = document.getElementById('element');
element.style.background = '#FF00AA';


7

将此脚本元素添加到您的body元素中:

<body>
  <script type="text/javascript">
     document.body.style.backgroundColor = "#AAAAAA";
  </script>
</body>

6

var element = document.getElementById('element');

element.onclick = function() {
  element.classList.add('backGroundColor');
  
  setTimeout(function() {
    element.classList.remove('backGroundColor');
  }, 2000);
};
.backGroundColor {
    background-color: green;
}
<div id="element">Click Me</div>


4

你可以试试这个

var element = document.getElementById('element_id');
element.style.backgroundColor = "color or color_code";

例。

var element = document.getElementById('firstname');
element.style.backgroundColor = "green";//Or #ff55ff

JSFIDDLE


1
element.style.background-color是无效的JavaScript。这就是CSS属性转换为CamelCase的原因。
CrazyIvan1974年

4

您可以使用JQuery做到这一点:

$(".class").css("background","yellow");


3

您可以使用:

  <script type="text/javascript">
     Window.body.style.backgroundColor = "#5a5a5a";
  </script>

3
$("body").css("background","green"); //jQuery

document.body.style.backgroundColor = "green"; //javascript

有很多方法,我认为这非常简单

柱塞演示


3
$('#ID / .Class').css('background-color', '#FF6600');

通过使用jQuery,我们可以将元素的类或Id作为目标以应用css背景或任何其他样式



0

Javascript:

document.getElementById("ID").style.background = "colorName"; //JS ID

document.getElementsByClassName("ClassName")[0].style.background = "colorName"; //JS Class

jQuery:

$('#ID/.className').css("background","colorName") // One style

$('#ID/.className').css({"background":"colorName","color":"colorname"}); //Multiple style

0

更改CSS的 HTMLElement

您可以使用JavaScript更改大多数CSS属性,请使用以下语句:

document.querySelector(<selector>).style[<property>] = <new style>

其中<selector><property><new style>都是String对象。

通常,style属性的名称与CSS中使用的实际名称相同。但是,只要有一个以上的单词,就会出现驼峰式的情况:例如用background-color更改backgroundColor

以下语句将的背景设置为#container红色:

documentquerySelector('#container').style.background = 'red'

这是一个快速演示,每0.5s更改盒子的颜色:

colors = ['rosybrown', 'cornflowerblue', 'pink', 'lightblue', 'lemonchiffon', 'lightgrey', 'lightcoral', 'blueviolet', 'firebrick', 'fuchsia', 'lightgreen', 'red', 'purple', 'cyan']

let i = 0
setInterval(() => {
  const random = Math.floor(Math.random()*colors.length)
  document.querySelector('.box').style.background = colors[random];
}, 500)
.box {
  width: 100px;
  height: 100px;
}
<div class="box"></div>


更改多个CSS HTMLElement

想象一下,您想将CSS样式应用于多个元素,例如,使用类名将所有元素的背景色设为 box lightgreen。那么你就可以:

  1. 选择元素,.querySelectorAll然后Array使用解构语法

    const elements = [...document.querySelectorAll('.box')]
  2. 遍历数组 .forEach并将更改应用于每个元素:

    elements.forEach(element => element.style.background = 'lightgreen')

这是演示:

const elements = [...document.querySelectorAll('.box')]
elements.forEach(element => element.style.background = 'lightgreen')
.box {
  height: 100px;
  width: 100px;
  display: inline-block;
  margin: 10px;
}
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>


另一种方法

如果要多次更改一个元素的多个样式属性,则可以考虑使用另一种方法:将该元素链接到另一个类。

假设您可以预先在CSS中准备样式,则可以通过访问classList元素的并调用toggle函数来切换类:

document.querySelector('.box').classList.toggle('orange')
.box {
  width: 100px;
  height: 100px;
}

.orange {
  background: orange;
}
<div class='box'></div>


JavaScript中的CSS属性列表

这是完整的列表:

alignContent
alignItems
alignSelf
animation
animationDelay
animationDirection
animationDuration
animationFillMode
animationIterationCount
animationName
animationTimingFunction
animationPlayState
background
backgroundAttachment
backgroundColor
backgroundImage
backgroundPosition
backgroundRepeat
backgroundClip
backgroundOrigin
backgroundSize</a></td>
backfaceVisibility
borderBottom
borderBottomColor
borderBottomLeftRadius
borderBottomRightRadius
borderBottomStyle
borderBottomWidth
borderCollapse
borderColor
borderImage
borderImageOutset
borderImageRepeat
borderImageSlice
borderImageSource  
borderImageWidth
borderLeft
borderLeftColor
borderLeftStyle
borderLeftWidth
borderRadius
borderRight
borderRightColor
borderRightStyle
borderRightWidth
borderSpacing
borderStyle
borderTop
borderTopColor
borderTopLeftRadius
borderTopRightRadius
borderTopStyle
borderTopWidth
borderWidth
bottom
boxShadow
boxSizing
captionSide
clear
clip
color
columnCount
columnFill
columnGap
columnRule
columnRuleColor
columnRuleStyle
columnRuleWidth
columns
columnSpan
columnWidth
counterIncrement
counterReset
cursor
direction
display
emptyCells
filter
flex
flexBasis
flexDirection
flexFlow
flexGrow
flexShrink
flexWrap
content
fontStretch
hangingPunctuation
height
hyphens
icon
imageOrientation
navDown
navIndex
navLeft
navRight
navUp>
cssFloat
font
fontFamily
fontSize
fontStyle
fontVariant
fontWeight
fontSizeAdjust
justifyContent
left
letterSpacing
lineHeight
listStyle
listStyleImage
listStylePosition
listStyleType
margin
marginBottom
marginLeft
marginRight
marginTop
maxHeight
maxWidth
minHeight
minWidth
opacity
order
orphans
outline
outlineColor
outlineOffset
outlineStyle
outlineWidth
overflow
overflowX
overflowY
padding
paddingBottom
paddingLeft
paddingRight
paddingTop
pageBreakAfter
pageBreakBefore
pageBreakInside
perspective
perspectiveOrigin
position
quotes
resize
right
tableLayout
tabSize
textAlign
textAlignLast
textDecoration
textDecorationColor
textDecorationLine
textDecorationStyle
textIndent
textOverflow
textShadow
textTransform
textJustify
top
transform
transformOrigin
transformStyle
transition
transitionProperty
transitionDuration
transitionTimingFunction
transitionDelay
unicodeBidi
userSelect
verticalAlign
visibility
voiceBalance
voiceDuration
voicePitch
voicePitchRange
voiceRate
voiceStress
voiceVolume
whiteSpace
width
wordBreak
wordSpacing
wordWrap
widows
writingMode
zIndex


-1
$(".class")[0].style.background = "blue";

这个问题有足够多的正确答案,而且这个答案没有比其他答案更好的了。
Novocaine 2015年

正如Novocaine所说的,这里有很多答案。但是将来请考虑编辑您的文章,以添加更多有关代码功能以及其解决问题原因的解释。通常仅包含代码(即使它在起作用)的答案通常不会帮助OP理解他们的问题。
SuperBiasedMan 2015年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.