DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> AJAX入門 >> AJAX基礎知識 >> jquery通過AJAX從後台獲取信息並顯示在表格上的實現類
jquery通過AJAX從後台獲取信息並顯示在表格上的實現類
編輯:AJAX基礎知識     

在上篇文章給大家介紹了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從後台獲取信息並顯示在表格上的實現類就這樣完成了,希望大家喜歡。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved