欢迎来到代码驿站!

jquery

当前位置:首页 > 网页前端 > jquery

jQuery Datatables 动态列+跨列合并实现代码

时间:2021-03-22 09:10:08|栏目:jquery|点击:

有时候需要用到

html

<input type="hidden" name="thead_key" id="thead_key" value="<?php if(isset($thead_key)):?><?php echo $thead_key;?><?php endif;?>">
<input type="hidden" name="thead_num" id="thead_num" value="<?php if(isset($thead_num)):?><?php echo $thead_num;?><?php endif;?>">

 

<table class="table text-nowrap table-striped table-bordered table-hover dataTables_list">
  <thead>
    <tr>
      <th rowspan="2"><div align="center">备注明细</div></th>
      <?php if(isset($thead_arr)):?>
      <th colspan="<?php echo count($thead_arr);?>"><div align="center">校区</div></th>
      <?php endif;?>
    </tr>
    <?php if(isset($thead_arr)):?>
    <?php foreach($thead_arr as $val):?>
    <th><div align="center"><?php echo $val;?></div></th>
    <?php endforeach;?>
    <?php endif;?>
  </thead>
</table>

js代码基于jquery

var oTable = null;
  var initTable = function()
  {
    var thead_key = $("#thead_key").val();
    var thead_num = $("#thead_num").val();

    thead_key = thead_key.split(',');

    var column_names = new Array();
    for(var i=0;i<=thead_num;i++)
    {
      column_names.push({"className":"text-c","sDefaultContent": ''})
    }

    oTable = $(".dataTables_list").dataTable({
      "sPaginationType": "full_numbers",
      "bLengthChange":true,
      "bFilter": false,//搜索栏
      "bProcessing": false,
      "bPaginate": true,
      "bServerSide": true,
      "bSort": false, //排序功能
      //"iDisplayLength":parseInt("{:config('admin_page_size')}"),
      "bAutoWidth": false,
      "sAjaxSource": "{:url('edu_report/ajax_school_group_product_list')}",
      "aoColumns": column_names,//封装好的数组

    //给行赋值
      "fnRowCallback": function(nRow, aData, iDisplayIndex)
      {
        $('td:eq(0)', nRow).html(aData.memo);

        $.each(thead_key, function(i, args)
        {
          $('td:eq('+(i+1)+')', nRow).html(aData["memo_cnt_"+args]);
        })
      },
    });
  }

效果图:

上一篇:jQuery模拟爆炸倒计时功能实例代码

栏    目:jquery

下一篇:如何使用jQUery获取选中radio对应的值(一句代码)

本文标题:jQuery Datatables 动态列+跨列合并实现代码

本文地址:http://www.codeinn.net/misctech/85844.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有