当前位置:  开发笔记 > 编程语言 > 正文

如何在TR和TD中添加属性?

如何解决《如何在TR和TD中添加属性?》经验,为你挑选了1个好方法。

我想使用数据数据表添加行,我可以这样做

var table = $('#mytable').DataTable();
table.add.row(['first column', 'second column', 'three column', 'etc']);

我需要的是这样的东西(TR和TD标签中的一些属性)


first column
second column
three column
etc

我如何用数据表做到这一点?



1> Gyrocode.com..:

使用createdRowcolumns.createdCell选项来定义一个回调函数时将被调用TR,并TD创建元素.

$('#example').dataTable( {
  'createdRow': function( row, data, dataIndex ) {
      $(row).attr('id', 'someID');
  },
  'columnDefs': [
     {
        'targets': 3,
        'createdCell':  function (td, cellData, rowData, row, col) {
           $(td).attr('id', 'otherID'); 
        }
     }
  ]
});

有关代码和演示,请参阅此示例.

推荐阅读
低调pasta_730
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有