jQuery不能只选择一个复选框

时间:2015-05-14 22:58:24

标签: javascript jquery html checkbox

我已经构建了一个包含四行和八列的表,每个表都有一个复选框。我希望每行只允许一个复选框。我正在尝试使用jquery来做到这一点。从逻辑上讲,它适用于jsfiddle,但它不适用于我本地。我确实首先使用警报来确保首先加载jQuery。

以下是我的代码。问题是,当我只能被允许检查一个时,我仍然可以检查每行的多个复选框:

 <body>
    <h2>Checkbox Test</h2>
    <script type="text/javascript" src="http://localhost/mytesting/jquery-2.1.4.js"></script>
    <script type="text/javascript">

    function onLoadAlert() {
        alert('Sup');
    }

    $(document).ready(onLoadAlert);
    </script>

    <script type="text/javascript">
        $('input[type="checkbox"]').on('change', function() {

          // uncheck sibling checkboxes (checkboxes on the same row)
          $(this).siblings().prop('checked', false);

          // uncheck checkboxes in the same column
          $('div').find('input[type="checkbox"]:eq(' + $(this).index() + ')').not(this).prop('checked', false);

        });
    </script>

    <table border="1">

    <tbody>
    <tr>
        <th><b>COST</b></th>
        <th colspan="3">Reduced Cost</th>
        <th>Neutral</th>
        <th colspan="3">Increased Cost</th>
        <th>Don't Know</th>
    </tr>
    <tr>
        <th></th>
        <th>High</th>
        <th>Medium</th>
        <th>Low</th>
        <th>No effect</th>
        <th>Low</th>
        <th>Medium</th>
        <th>High</th>
        <th></th>
    </tr>
    <tr>
        <td>Capital cost</td>
        <div>
        <td><input type="checkbox" id="matrix1" value="1"></td>
        <td><input type="checkbox" id="matrix2" value="1"></td>
        <td><input type="checkbox" id="matrix3" value="1"></td>
        <td><input type="checkbox" id="matrix4" value="1"></td>
        <td><input type="checkbox" id="matrix5" value="1"></td>
        <td><input type="checkbox" id="matrix6" value="1"></td>
        <td><input type="checkbox" id="matrix7" value="1"></td>
        <td><input type="checkbox" id="matrix8" value="1"></td>
        </div>

    </tr>



    </tbody>

2 个答案:

答案 0 :(得分:2)

您的input元素不是兄弟姐妹,因为他们有不同的父母 - td元素:

<td><input type="checkbox" id="matrix1" value="1"></td>
<td><input type="checkbox" id="matrix2" value="1"></td>

这就是为什么这不起作用的原因:

$(this).siblings().prop('checked', false);

相反,这样做:

$(this).closest('tr').find('input').not(this).prop('checked', false);

Fiddle 1

<小时/> 或者,您可以使用具有相同name

的单选按钮
 <td><input type="radio" name="matrix"></td>
 <td><input type="radio" name="matrix"></td>
 <td><input type="radio" name="matrix"></td>

这样,您就不需要任何JavaScript。

Fiddle 2

答案 1 :(得分:0)

这样做会不会简单得多

var checkBoxes = $('input[type=checkbox]');
$('table').on('click', 'input[type=checkbox]', function () {
  checkBoxes.prop('checked', false);
  $(this).prop('checked', true);
});

你在 tr 中有一个 div