我是服务器端我想添加一个复选框,当复选框被选中时,它会返回true或false。但我不知道如何将更改事件添加到表格中的复选框,并将布尔值发送到我的数据。我想设置全局搜索旁边的复选框。
HTML
<table id="searchlog" class="table table-striped table-bordered" cellspacing="0" width="100%">Case Sensitive :
<input type='checkbox' id='idCaseSensitive' />
<thead>
<tr>
<th>COL1</th>
<th>COL2</th>
<th>COL3</th>
<th>COL4</th>
<th>COL5</th>
<th>COL6</th>
<th>COL7</th>
<th>COL8</th>
</tr>
</thead>
<tbody></tbody>
</table>
JQUERY
$(document).ready(function () {
$('#searchlog').DataTable({
serverSide: true,
aaSorting: [
[1, 'desc']
],
ajax: {
url: '/mypath/...',
method: 'POST',
data: {
caseSensitive: true // I want the checkbox's return on this parameter
}
}
});
$('#idCaseSensitive').change(function (data) {
if (this.checked) {
return true;
} else {
return false;
}
});
});
你能帮帮我吗?
答案 0 :(得分:0)
$(document).ready(function () {
var flag=false;
$('#idCaseSensitive').change(function (data) {
if ($(this).attr("checked")==true) {
flag=true;
} else {
flag=false;
}
});
$('#searchlog').DataTable({
serverSide: true,
aaSorting: [
[1, 'desc']
],
ajax: {
url: '/mypath/...',
method: 'POST',
data: {
caseSensitive: flag; // I want the checkbox's return on this parameter
}
}
});
});
答案 1 :(得分:0)
我用一个返回flag变量的函数解决了我的问题,我在数据caseSensitive中使用它。