這期內(nèi)容當中小編將會給大家?guī)碛嘘P(guān)怎么在JQuery中利用Ajax動態(tài)加載Table數(shù)據(jù),文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
站在用戶的角度思考問題,與客戶深入溝通,找到察雅網(wǎng)站設計與察雅網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:網(wǎng)站設計制作、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、域名與空間、網(wǎng)站空間、企業(yè)郵箱。業(yè)務覆蓋察雅地區(qū)。
我們在jsp定義一個select和一個table,要求實現(xiàn)根據(jù)select的選值,動態(tài)加載table數(shù)據(jù)。
table第一次加載數(shù)據(jù)的function定義如下:
function loadData() { var c = ''; $('#import-table').DataTable({ ajax: { url: '<%=request.getContextPath()%>' + "../../../hot/getByCode.action?code=APP", type: "post", dataType: "json", data: {} }, "scrollCollapse": true, ordering: false, visible: true, api: true, serverSide: true, columns: [{ "data": "id", "class": "center", "width": "80px", "name": "importId", orderable: false, "title": c, "render": function(a, b, c, d) { return getColumnReturnStr("checkbox", c.id, "importId") } }, { "data": "name", "title": "名稱" }, ], "dom": "<'row'<'col-sm-6'l><'col-sm-6'f>r>t<'row'<'col-sm-6'i><'col-sm-6'p>>", initComplete: function() {} }); }
接著需要考慮,如何在select選值改變的時候,更新table中ajax的url地址,實現(xiàn)table的reload
function reloadTable(){ var code = $("#type option:selected").val(); $('#import-table').DataTable() .ajax.url( '<%=request.getContextPath()%>'+"../../../hot/getByCode.action?code="+ code ).load(); }
這樣我們便可以通過改變select選值,動態(tài)加載table數(shù)據(jù)。
通過$(‘#import-table').DataTable().ajax.url().load();方法實現(xiàn)。
上述就是小編為大家分享的怎么在JQuery中利用Ajax動態(tài)加載Table數(shù)據(jù)了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。