捕捉复选框更改和索引以切换LED

时间:2013-04-06 14:06:29

标签: javascript jquery checkbox

我想捕捉一个复选框更改,并且还会捕获所选或未选中复选框的索引。我想知道这是否可以。

$("input[type='checkbox']").change(function () {
  $("input[type='checkbox']").each(function (i) {
    //my code here
    switch (i) {
      case 0:
        break;
      case 1:
        break;
          .
          .
    }
  });
});

我的HTML是这样的:

<table>
<tr>
<td id='led' bgcolor=#cccccc>OFF</td>
<td><input type='checkbox' name='' value='' ></td>
</tr>
<tr>
<td id='led' bgcolor=#cccccc>OFF</td>
<td><input type='checkbox' name='' value='' ></td>
</tr>
<tr>
<td id='led' bgcolor=#cccccc>OFF</td>
<td><input type='checkbox' name='' value='' ></td>
</tr>
<tr>
</table>

所以我想检测选择了哪个框,然后将LED更改为ON和红色背景颜色。另一方面,如果未选中该框,我想将LED返回OFF并将颜色更改为#cccccc

3 个答案:

答案 0 :(得分:5)

如果没有进一步的细节,这是我能提供的最通用的代码(更多信息来得很好,呃,答案):

$('input:checkbox').change(function(){
    // caching the $(this) jQuery object, since we're using it more than once:
    var that = $(this),
         // index of element with regard to its sibling elements:
        index = that.index(),
        // index with regard to other checkbox elements:
        checkboxIndex = that.index('input:checkbox');

        if (this.checked){ // this.checked evaluates to a Boolean (true/false)
            // this block executed only if the checkbox *is* checked
        } else {
            // this block executed only if the checkbox is *not* checked
        }
});

已编辑以解决(已编辑/澄清)问题中的要求:

$('input:checkbox').change(function () {
    var that = this,
        $that = $(that),
        led = $that.closest('tr').find('td:first-child');
    led.removeClass('on off').addClass(function(){
        return that.checked ? 'on' : 'off';
    });
});

JS Fiddle demo

将上述jQuery与以下CSS结合使用:

.led,
.led.off {
    background-color: #ccc;
}

.led.on {
    color: #000;
    background-color: #f00;
}

和HTML:

<table>
    <tr>
        <td class='led'>OFF</td>
        <td>
            <input type='checkbox' name='' value='' />
        </td>
    </tr>
    <tr>
        <td class='led'>OFF</td>
        <td>
            <input type='checkbox' name='' value='' />
        </td>
    </tr>
    <tr>
        <td class='led'>OFF</td>
        <td>
            <input type='checkbox' name='' value='' />
        </td>
    </tr>
</table>

请注意,我已将id="led"替换为class="led",因为id 在文档中必须是唯一的。 当谈到JavaScript和HTML有效性时,这很重要。

参考文献:

答案 1 :(得分:0)

如果在每个功能代码中选中了复选框,则可以这样做:

if ( $(this).is(':checked') ) {
  // ...
} else {
  // ...
}

答案 2 :(得分:-1)

$('input:checkbox').change(function() {
   if (this.checked) {
      // your code here
      alert(this.value);
   }
});
相关问题