我正在研究jQuery Data表,从mysql数据库加载一些数据。
以下是html代码:
<table id="employee-grid" cellpadding="0" cellspacing="0" border="0" class="display" width="100%">
<thead>
<tr>
<th>#</th>
<th>User Id</th>
<th>Address</th>
<th>Package Name</th>
<th>Status</th>
<th>Action</th>
</tr>
</thead>
</table>
从php页面我加载数据如下:
// skipping more code...
$nestedData[] = "
<select class='form-control changeStatus' name='status'>
<option value=''>--Select--</option>
<option value='1|$client_id' $statusMsg1>Active</option>
<option value='2|$client_id' $statusMsg2>Blocked</option>
</select>";
现在加载的数据如下所示:
现在我想在html Ajax
选项值发生变化时调用selected
请求。它通过以下代码成功调用Ajax
请求。
jQuery数据表和我的Ajax请求的jQuery代码:
$(document).ready(function() {
var dataTable = $('#employee-grid').DataTable( {
"processing": true,
"serverSide": true,
"ajax":{
url :"server_processing.php", // json datasource
type: "post", // method , by default get
error: function(){ // error handling
$(".employee-grid-error").html("");
$("#employee-grid").append('<tbody class="employee-grid-error"><tr><th colspan="3">No data found in the server</th></tr></tbody>');
$("#employee-grid_processing").css("display","none");
}
}
} );
$("#employee-grid").on('change', function() {
var status = $('.changeStatus').val();
alert(status);
$.ajax({
url : "<?php echo SITE_URL . 'toplevel/update-data'; ?>",
data : {
'statusChange' : status
},
type : 'POST',
});
});
});
但当我选择该选项时,每次传递第一个选项值
例如此selected
选项标记具有以下值:
<option value='1|11' $statusMsg1>Active</option>
<option value='2|11' $statusMsg2>Blocked</option>
总是传递1|11
值!!它应该通过我选择的选项值。我不明白为什么会发生这种情况:(
注意:我认为使用jQuery数据表自定义jquery代码应该以不同的方式使用。
答案 0 :(得分:1)
好伙计,
我已经解决了。我需要使用类似的东西:
$('#employee-grid').on('change', '.changeStatus', function(){
// testing.....
var status = $('.changeStatus').val();
alert(status);
});
解决方案是通过在on()调用中为target元素提供选择器作为第二个参数来使用事件委派。