jquery通過AJAX從後台擷取資訊並顯示在表格上的實作類別_AJAX相關

來源:互聯網
上載者:User

在上篇文章給大家介紹了JQuery通過AJAX從後台擷取資訊顯示在表格上並支援行選中 ,現在,抽個時間他們處理了一下,這樣就不需要每次寫代碼了,可以節省大量的時間,具體請看下文:

具體代碼如下:

//擷取資料並顯示資料表格function GetTableData(tableId,ChlickEvent) { var table = $(tableId); var url=table.data('url'); $.ajax({  url: url,  type: 'post',  dataType: 'json', }) .done(function (json) {  var fileds = new Array();  table.children('thead').children('tr').children('th').each(function (index, el) {   var field = $(this).data('field');   fileds[index] = field;  });  var tbody = '';  $.each(json, function (index, el) {   var tr = "<tr>";   $.each(fileds, function (i, el) {    if (fileds[i]) {     tr += '<td>' + formatJsonData(json[index][fileds[i]]) + '</td>';    }   });   tr += "</tr>";   tbody += tr;  });  table.children('tbody').append(tbody);  if (ChlickEvent) {//如果需要支援行選中事件   table.children('tbody').addClass('sel');   table.children('tbody.sel').children('tr').click(function (event) {    $(this).siblings('tr').removeClass('active');//刪除其他行的選中效果    $(this).addClass('active');//增加選中效果    ChlickEvent($(this).children('td:eq(0)').text());//新增點擊事件   });  } }).fail(function () {  alert("Err"); });}//格式化JSON資料,比如日期function formatJsonData(jsondata){ if(jsondata==null){  return '無資料'; } else if(/\/Date\(\d+\)/.exec(jsondata)){  var date = new Date(parseInt(jsondata.replace("/Date(", "").replace(")/", ""), 10));  return date.toLocaleString(); } return jsondata;}

寫的非常簡單,功能也很少,但是我自己用暫時足夠了。滿足簡單需求。

HTML代碼必須以下格式,必須以POST方式擷取JSON資料,擷取地址寫到data-url裡,資料列名寫到data-field裡。

支援點擊事件。

用法:

<table id="RoleGroupTable" class="table" data-url="@Url.Action("GetRoleGroups", "Account")"> <thead> <tr>  <th data-field="ID">ID</th>  <th data-field="Name">名稱</th>  <th data-field="Remark">簡介</th> </tr> </thead> <tbody></tbody></table><script> jQuery(document).ready(function ($) { GetTableData('#RoleGroupTable', function (id) {  alert(id) }); });</script>

以上代碼簡單易懂,jquery通過AJAX從後台擷取資訊並顯示在表格上的實作類別就這樣完成了,希望大家喜歡。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.