3

基本上,我想通过单击按钮使用 JavaScript 更改 CSS 中元素的背景颜色。

到目前为止,我的 CSS 看起来像这样:

div.box {
    width:100px;
    height:100px;
    background-color:#FF2400;
}

它需要动态更改为几种颜色的选择,只需使用多个按钮即可(每个按钮都是不同的颜色)。

4

3 回答 3

8

完成:http: //jsfiddle.net/iambriansreed/zmtU4/

更新为非 jQuery。

HTML

<div id="box"></div><div id="box"></div>

<button type="button" onclick="button_click('red');">Red</button>
<button type="button" onclick="button_click('blue');">Blue</button>
<button type="button" onclick="button_click('green');">Green</button>
<button type="button" onclick="button_click('yellow');">Yellow</button>
<button type="button" onclick="button_click('purple');">Purple</button>​

纯 JavaScript

function button_click(color){
    document.getElementById("box").style.backgroundColor=color;
}​
于 2012-04-24T13:41:36.047 回答
1

执行此操作的 vanilla-javascript 方法是获取对元素的引用并用于style.backgroundColor更改颜色:

例如,如果 div 有一个你的 id,myBox你会使用

document.getElementById("myBox").style.backgroundColor="#000000"; // change to black

现场示例:http: //jsfiddle.net/QWgcp/

顺便说一句,如果您正在做很多此类操作框架,例如 jQuery,则会在编写代码时为您提供一些帮助。使用 jQuery 的相同功能会更简单一些:

$('#myBox').css('background-color','#000000');
于 2012-04-24T13:40:45.113 回答
0

我是否正确理解您不想更改单个元素,而是更改 CSS 规则,所以所有匹配的元素都会受到影响?这是一个如何将示例中的样式动态更改为蓝色的示例:

<html>
<head>
<style>
div.box{
    width:100px;
    height:100px;
    background-color:#FF2400;
}
</style>
<script>
    var sheet = document.styleSheets[0] // Of course if you have more than one sheet you'll have to find it among others somehow
    var rulesList = sheet.cssRules || sheet.rules // some older browsers have it that way
    var rule = rulesList[0] // same for rules - more than one and you'll have to iterate to find what you need
    rule.style.backgroundColor = 'blue' // and voila - both boxes are now blue
</script>
</head>
<body>
<div class="box"></div>
<div class="box"></div>
</body>
</html>

只需将此部分作为“单击”事件处理程序分配给按钮,就可以了。

于 2012-04-24T13:52:16.363 回答