2

我有一个由 6 个框组成的网页,即 div,它们通过红绿灯颜色代表不同系统的当前状态 - 红色、琥珀色或绿色。

我希望能够为每个 div 单独循环通过这些颜色,以便每个系统可以具有不同的状态。

盒子的伪代码

<div id="system1">System Name</div>
<div id="system2">System Name</div>
<div id="system3">Systen Name</div>

等等。

背景颜色在所有系统的页面加载时由 CSS 声明为红色,然后我希望能够单独单击每个 div 以循环到琥珀色然后绿色然后回到红色以选择最合适的。

我正在努力使用 Javascript 来使其正常工作。我试图使用

document.getElementById(elem).style.backgroundColor = 'red'; 

在 If 语句中查看当前的颜色并相应更改,但 Javascript 返回 rgb 值。例如,当我尝试时,

document.getElementById(elem).style.backgroundColor == 'rgb(255,231,51)')

即使它应该匹配它也不匹配。

任何建议都非常感谢!

4

3 回答 3

3

我建议你使用类,

<style type="text/css">
    .red {background-color:red;}
    .amber {background-color:yellow;}
    .green {background-color:green;}
</style>

<script type="text/javascript">

function changeColor(e) {
    var c = e.className;
    e.className = (c == 'red') ? 'amber' : 
                  (c == 'amber') ? 'green' : 
                  (c == 'green') ? 'red' : ''; 
}

</script>
<div class="red" id="system1" onclick="changeColor(this)">System Name</div>
<div class="green" id="system2" onclick="changeColor(this)">System Name</div>
<div class="amber" id="system3" onclick="changeColor(this)">Systen Name</div>

​

演示

于 2012-06-11T14:58:52.740 回答
0

当您为它们提供“红色”等颜色时,浏览器会以不同的方式翻译颜色的外观。我也认为你的方法是错误的。我会使用维护所有信息的类。

ACommonSystem = function(linkto) 
    {
    this.domobject = linkto;
    // 0 = off, 1 = on, 2 = crashed, 3 = destroyed
    this.state = 0;
    this.errors = null;
    }
ACommonSystem.prototype.turnOn = function()
    {
    if(this.state < 2)
        {
        this.state = 1;
        this.domobject.style.backgroundColor = "green";
        }
    }
ACommonSystem.prototype.turnOff = function()
    {
    this.state = 0;
    this.domobject.style.backgroundColor = "blue";
    }
ACommonSystem.prototype.crash = function()
    {
    this.state = 2;
    this.domobject.style.backgroundColor = "red";
    this.errors = "I've been kicked";
    }
ACommonSystem.prototype.die = function()
    {
    this.state = 3;
    this.domobject.style.backgroundColor = "black";
    this.errors = "i've burned out";
    }

mysystem1 = ACommonSystem(document.getElementById('system1'));
mysystem1.turnOn();
window.setTimeout(3000,function(){mysystem1.crash();})
于 2012-06-11T14:44:32.967 回答
0

目前您还没有提到 Jquery 作为标签,但为了您的参考,我已经这样做了。

如果你愿意去 Jquery,你可以这样做:-

现场演示

HTML:

<div class="system">System Name</div>
<div class="system">System Name</div>
<div class="system">Systen Name</div>

查询:

$('.system').click(function() {
    switch ($('div.system').index(this))
    {
        case 0: 
                $(this).css('background-color', 'red');
                break;
        case 1: 
                $(this).css('background-color', 'green');
                break;
        case 2: 
                $(this).css('background-color', 'blue');
                break;
    }
});​
于 2012-06-11T14:55:39.873 回答