我试图为每一行获取第一个单元格(td
)并获取它但仅针对当前页面。如果我导航到下一页,则不会发送上一页上选中的复选框。
<table class="table" id="example2">
<thead><tr>
<th>Roll no</th><th>Name</th></tr><thead>
<?php
$sel = "SELECT * FROM `st`";
$r = mysqli_query($dbc, $sel);
while ($fet = mysqli_fetch_array($r)) {
?>
<tr>
<td><?php echo $fet['trk'] ?></td>
<td><input type="text" value="<?php echo $fet['ma'] ?>" id="man" class="form-control"></td>
<td><input type="checkbox" id="check" name="myCheckbox" class="theClass"></td></tr>
<?php } ?>
</table>
<input type="submit" id="sub_marks" class="btn btn-info" value="Submit & Continue">
<script src="plugins/datatables/jquery.dataTables.min.js" type="text/javascript"></script>
<script src="plugins/datatables/dataTables.bootstrap.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$('#example2').DataTable({
"paging": true,
"lengthChange": false,
"searching": false,
"ordering": true,
"info": true,
"autoWidth": false,
})
});
</script>
<script>
$('#sub_marks').click(function () {
var values = $("table #check:checked").map(function () {
return $(this).closest("tr").find("td:first").text();
}).get();
alert(values);
})
</script>
答案 0 :(得分:16)
jQuery DataTables出于性能原因从DOM中删除不可见的行。提交表单时,只有可见复选框的数据会发送到服务器。
在表单提交时,您需要将已检查且在DOM中不存在的元素<input type="checkbox">
转换为<input type="hidden">
。
var table = $('#example').DataTable({
// ... skipped ...
});
$('form').on('submit', function(e){
var $form = $(this);
// Iterate over all checkboxes in the table
table.$('input[type="checkbox"]').each(function(){
// If checkbox doesn't exist in DOM
if(!$.contains(document, this)){
// If checkbox is checked
if(this.checked){
// Create a hidden element
$form.append(
$('<input>')
.attr('type', 'hidden')
.attr('name', this.name)
.val(this.value)
);
}
}
});
});
var table = $('#example').DataTable({
// ... skipped ...
});
$('#btn-submit').on('click', function(e){
e.preventDefault();
var data = table.$('input[type="checkbox"]').serializeArray();
// Include extra data if necessary
// data.push({'name': 'extra_param', 'value': 'extra_value'});
$.ajax({
url: '/path/to/your/script.php',
data: data
}).done(function(response){
console.log('Response', response);
});
});
有关详细信息和演示,请参阅jQuery DataTables: How to submit all pages form data。
value
属性指定唯一值。id
属性check
,此属性应该是唯一的。paging
,info
等选项,默认情况下会启用这些选项。htmlspecialchars()
函数正确编码HTML实体。例如,<?php echo htmlspecialchars($fet['trk']); ?>
。答案 1 :(得分:0)
<form action="Nomination" name="form">
<table width="100%" class="table table-striped table-bordered table-hover" id="dataTables- example">
<tbody>
<%while (rs1.next()){%>
<tr>
<td><input type="checkbox" name="aabb" value="<%=rs1.getString(1)%>" /></td>
</tr>
<%}%>
</tbody>
</table>
</form>
并添加具有正确的表单ID和表ID的脚本
<script>
var table = $('#dataTables-example').DataTable({
// ... skipped ...
});
</script>
<script>
$('form').on('submit', function(e){
var $form = $(this);
table.$('input[type="checkbox"]').each(function(){
if(!$.contains(document, this)){
if(this.checked){
$form.append(
$('<input>')
.attr('type', 'hidden')
.attr('name', this.name)
.val(this.value)
);} } }); });
</script>
这是工作代码
答案 2 :(得分:0)
您不必在提交之前就在表单上隐藏元素,只需在提交之前销毁数据表即可,它会像平常一样在所有页面上提交所有复选框
$('form').on('submit', function (e) {
$('.datatable').DataTable().destroy();
});
答案 3 :(得分:0)
来自Gyrocode.com的出色代码,但如果行中还有其他一些隐藏值,则也必须在表单中创建它们。
我使用:
var table = $('#example').DataTable({
// ... skipped ...
});
$("#buttonValidation").click(function(){
table.page.len(-1).draw();
});
它只在屏幕上显示所有数据表而没有分页,然后再以表格形式发送。也许如果要隐藏显示,可以使用css opacity:0(但不能显示:none)。