gpt4 book ai didi

javascript - SAjaxsource 在 JQuery 数据表中完成后如何调用 javascript 函数

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:05:49 27 4
gpt4 key购买 nike

我正在使用 JQuery SAjaxsource 如何在 SAjaxsource 完成后调用 javascript 函数。我想在数据表加载完成后更新一个 div。请帮助我...

编辑:

$(document).ready( function() {
var oTable = $('#example').dataTable( {

"bServerSide": true,
"sSearch":false,
"aLengthMenu": [[10, 25, 50, 100, -1], [10, 25, 50, 100, "All"]],
"bPaginate": true,
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"sAjaxSource": "server_processingCDB1.php"
} );

最佳答案

查看帮助的回调部分中的 fnServerData 选项 -> http://www.datatables.net/usage/callbacks

给你你需要的一切......这里有一些示例代码:

$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "../examples_support/server_processing.php",
"fnServerData": function ( sSource, aoData, fnCallback ) {
$.getJSON( sSource, aoData, function (json) {
/* Do whatever additional processing you want on the callback, then tell DataTables */
fnCallback(json)
} );
}
} );
} );

关于javascript - SAjaxsource 在 JQuery 数据表中完成后如何调用 javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7360861/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com