zoukankan      html  css  js  c++  java
  • datatables 添加title属性

    datatables 添加title属性

    使用 createdRowcolumns.createdCell options 来定义一个回调函数用于创建 TR and 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');
          }
        }
      ]
    });
    

    Example:给td元素添加title属性

    columns: [{
        "sClass": "member",
        "data": "id",
        "render": function (data, type, full, meta) {
          return '<i class="check_icon check_false" data-value="' + data + '">';
        },
        "bSortable": false
      },
      {
        "data": "name",
        'createdCell':  function (td, cellData, rowData, row, col) {
          $(td).attr('title', cellData); 
        }
      },
      {
        "data": "email",
        'createdCell':  function (td, cellData, rowData, row, col) {
          $(td).attr('title', cellData); 
        }
      }
    }]
    
  • 相关阅读:
    0808 HTML 基础
    2016.8.3 C#基础 结构体,枚举类型
    2016.8.1 C#基础 传值
    2016.7.22
    2016.7.20
    2016.7.31C#基础 函数
    2016.07.30C#基础 特殊集合
    2016.7.28C#基础 集合
    个人项目网页3
    个人项目网页2
  • 原文地址:https://www.cnblogs.com/dragonir/p/12200345.html
Copyright © 2011-2022 走看看