Javascript选择框选择所有功能

时间:2014-06-24 10:19:50

标签: javascript jquery

我尝试在我的按钮上添加select all函数,但是jquery.min文件存在问题。

我在header.php页面上有这些;

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>

我正在使用这些代码来选择所有功能;

   <script type="text/javascript">
function toggle(source) {
  checkboxes = document.getElementsByName('foo');
  for(var i=0, n=checkboxes.length;i<n;i++) {
    checkboxes[i].checked = source.checked;
  }
}
</script>

当我删除header.php上的javascript包含并在anket.php上添加这些包含时,选择所有正在运行的框,但其他东西不是(我们使用jquery进行一些操作)。我需要做好两件事。

这是我的HTML;

<table class="table table-bordered table-check">
                        <thead>
                            <tr>
                                <th><input type="checkbox" onClick="toggle(this)" class="styled"></th>
                                <th align="center">Soru</th>
                                <th align="center">Durum</th>
                            </tr>
                        </thead>
                        <tbody>
                            <tr>
                                <td><input type="checkbox" name="foo" class="styled" /></td>
                                <td align="center">Aylık kazancınız nedir?</td>
                                <td align="center">Aktif</td>
                            </tr>
                            <tr>
                                <td><input type="checkbox" name="foo" class="styled" /></td>
                               <td align="center">Cinsiyetiniz nedir?</td>
                               <td align="center">Pasif</td>
                            </tr>


                        </tbody>
                    </table>

谢谢。

1 个答案:

答案 0 :(得分:0)

你可以试试这个:

<强> HTML

<table class="table table-bordered table-check">
  <thead>
    <tr>
      <th>
        <input type="checkbox" class="styled" id="allChk" />
      </th>
      <th align="center">Soru</th>
      <th align="center">Durum</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>
        <input type="checkbox" name="foo" class="styled" />
      </td>
      <td align="center">Aylık kazancınız nedir?</td>
      <td align="center">Aktif</td>
    </tr>
    <tr>
      <td>
        <input type="checkbox" name="foo" class="styled" />
      </td>
      <td align="center">Cinsiyetiniz nedir?</td>
      <td align="center">Pasif</td>
    </tr>
  </tbody>
</table>

<强>脚本

$(function(){
    $("#allChk").on('change', function(){
        $("input[name=foo]:checkbox").prop('checked', $(this).prop('checked'));
    });

    $("input[name=foo]:checkbox").on('change', function(){
        $("#allChk").prop('checked', 0 === $("input[name=foo]:not(:checked)").length);
    });
})