【发布时间】:2023-03-03 17:50:02
【问题描述】:
需要帮助我有 3 个 ajax 在哪里 - 如果单击将显示 ajax B,则来自 ajax A 的数据有按钮 - 如果单击将显示 ajax C,则来自 ajax B 的数据有按钮 问题是当我寻找新的搜索时,来自 ajax A 的数据表 来自 ajax B 的数据仍然是旧的 如何在加载 ajax A 之前清除来自 ajax B 和 C 的数据 这是我的 ajax A 代码:
<script type="text/javascript">
var save_method; //for save method string
var table; //for ajax A
var table2; // for ajax B
var table3; // for ajax C
var base_url = '<?php echo base_url()?>';
// table2 = $('#table_id2').clear();
// table2 = $('#table_id2').rows.add(response.data);
// table2 = $('#table_id2').draw();
$(document).ready(function() {
//datatables
table = $('#table_id').DataTable({
"lengthMenu": [[5, 10, 25, -1], [5, 10, 25, "All"]],
"deferLoading": 0,
"processing": true, //Feature control the processing indicator.
"language": {
"processing": "<span><img src='images/Preloader_3.gif'/></span>"
}, // you can put text or html here in the language.processing setting.
"serverSide": true, //Feature control DataTables' server-side processing mode.
"order": [], //Initial no order.
// Load data for the table's content from an Ajax source
"ajax": {
"url": "<?php echo base_url('infoemployee/ajax_list')?>",
"type": "POST",
},
//Set column definition initialisation properties.
"columnDefs": [
{
"targets": [ -1 ], //last column
"orderable": false, //set not orderable
},
],
}); });
【问题讨论】:
标签: javascript json ajax codeigniter