我想从td
获取table
的值。该表有一个复选框
我的目标是获取这些值并将其发送到控制器以全部插入。
<table class="table table-bordered" id="mytable">
<tr>
<th>Archive</th>
<th><input type="checkbox" id="check_all"></th>
<th>S.No.</th>
<th>matricule</th>
<th>nom & prenom</th>
<th>salaire net</th>
<th>nbre de jour </th>
<th>prime</th>
</tr>
@if($salaries->count()) @foreach($salaries as $key => $salarie)
<tr id="tr_{{$salarie->id}}">
<td>archive</td>
<td><input type="checkbox" class="checkbox" data-id="{{$salarie->id}}"></td>
<td>{{ ++$key }}</td>
<td>{{ $salarie->matricule }}</td>
<td>{{ $salarie->nom }} {{ $salarie->prenom }}</td>
<td>{{ $salarie->salairenet }}</td>
<td><input type="text" name="nbreJ" class="form-control" value="{{$data['nbr']}}"></td>
<td><input type="text" name="prime" class="form-control" value="0"></td>
</tr>
@endforeach @endif
</table>
$(document).ready(function() {
$('#check_all').on('click', function(e) {
if ($(this).is(':checked', true)) {
$(".checkbox").prop('checked', true);
} else {
$(".checkbox").prop('checked', false);
}
});
$('.checkbox').on('click', function() {
if ($('.checkbox:checked').length == $('.checkbox').length) {
$('#check_all').prop('checked', true);
} else {
$('#check_all').prop('checked', false);
}
});
$('.add-all').on('click', function(e) {
var idsArr = [];
$(".checkbox:checked").each(function() {
idsArr.push($(this).attr('data-id'));
});
if (idsArr.length <= 0) {
alert("Please select atleast one record to update.");
} else {
alert(idsArr);
}
});
});
答案 0 :(得分:0)
我给值提供了一个类。然后我得到所有检查的输入。然后,我得到具有给定类的同级td。得到这个值,最后求和。
$('.table').on('click', function() {
// Get all checked boxes
var allChecked = $('.checkbox:checked');
// Prepare the result
var allValues = [];
var allNames = [];
// Loop every checkbox
for (var i = 0; i < allChecked.length; i++) {
// Get the siblings td with class 'salaireValue'
var currentValue = $(allChecked[i]).parent().siblings('.salaireValue')[0];
var currentName = $(allChecked[i]).parent().siblings('.name')[0];
// Push to arrays
allValues.push(parseInt($(currentValue)[0].innerText))
allNames.push($(currentName)[0].innerText)
}
console.log(allValues);
console.log(allNames);
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<table class="table table-bordered" id="mytable">
<tr>
<th>Value</th>
<th>Checkbox</th>
</tr>
<tr>
<td class="salaireValue">1</td>
<td class="name">John</td>
<td><input type="checkbox" class="checkbox"></td>
</tr>
<tr>
<td class="salaireValue">2</td>
<td class="name">Louise</td>
<td><input type="checkbox" class="checkbox"></td>
</tr>
<tr>
<td class="salaireValue">5</td>
<td class="name">Frank</td>
<td><input type="checkbox" class="checkbox"></td>
</tr>
</table>