如何使用javascript或jquery

时间:2017-06-24 09:20:27

标签: javascript jquery html checkbox

我有一个表,其中的值是从数据库中动态添加的,如下所示:

    var row = table.insertRow(i);
i = i+1;
// Insert new cells (<td> elements) at the 1st and 2nd position of the new <tr> element:
var cell1 = row.insertCell(0);
var cell2 = row.insertCell(1);
var cell3 = row.insertCell(2);
var cell4 = row.insertCell(3);
var cell5 = row.insertCell(4);
var cell6 = row.insertCell(5);
var cell7 = row.insertCell(6);
var cell8 = row.insertCell(7);
var cell9 = row.insertCell(8);
var cell10 = row.insertCell(9);
var cell11 = row.insertCell(10);

// Add some text to the new cells:
cell1.innerHTML = '$name';
cell2.innerHTML = '$name2';
cell3.innerHTML = '$lastname';
cell4.innerHTML = '$lastname2';
cell5.innerHTML = '$mellicode';
cell6.innerHTML = '$estekhdamnum';
cell7.innerHTML = '$email';
cell8.innerHTML = '$username';
cell9.innerHTML = '$password';
cell10.innerHTML = '$id';
var checkbox = document.createElement('INPUT');
checkbox.type = 'checkbox';
checkbox.name = 'checkbox[]';
checkbox.value = 'i-1';
cell11.appendChild(checkbox);

我想在表格的末尾添加一个按钮,当我点击它时,它会检查所有复选框,识别复选框的行并进行一些查询。

$('tr').click(function(){

}); 

及以下是当我点击它时,我想对选中的复选框进行查询的按钮。

<input type="submit" class="form-control" name = "karbar" value=""onclick="add_karbar()"/><br><br>

我不应该使用&#39; tr&#39;在这里我想但我不知道如何识别复选框并查看是否已选中并识别复选复选框的行。

提前感谢您的回答。

2 个答案:

答案 0 :(得分:0)

希望这就是你要找的东西,

&#13;
&#13;
$("#check").click(function() {
  var index = [];
  $("#table tbody input[type='checkbox']:checked").each(function(el) {
    index.push($(this).closest('tr').index());
  });
  console.log(index)
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table id="table">
  <tbody>
    <tr>
      <td><input type="checkbox"></td>
    </tr>
    <tr>
      <td><input type="checkbox"></td>
    </tr>
    <tr>
      <td><input type="checkbox"></td>
    </tr>
    <tr>
      <td><input type="checkbox"></td>
    </tr>
    <tr>
      <td><input type="checkbox"></td>
    </tr>
    <tr>
      <td><input type="checkbox"></td>
    </tr>
    <tr>
      <td><input type="checkbox"></td>
    </tr>
    <tr>
      <td><input type="checkbox"></td>
    </tr>
    <tr>
      <td><input type="checkbox"></td>
    </tr>
  </tbody>
</table>
<input type="submit" id="check">
&#13;
&#13;
&#13;

答案 1 :(得分:-1)

你可以这样做。

// Click event on button
$('#checker').click(function(){
  // iterate through all checkboxes that are checked
  $("input[type=checkbox]:checked").each(function () {
    // debugging purposes only
    console.log($(this).val() + " is checked");
    // Add your code here
  });
}); 
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="checkbox" name="checkbox1" value="1" checked>1
<input type="checkbox" name="checkbox2" value="2" checked>2
<input type="checkbox" name="checkbox3" value="3" checked>3
<button id="checker">Check</button>