码迷,mamicode.com
首页 > 其他好文 > 详细

layui table表格字段过长,展示不完整时,鼠标放到上面展示完整信息

时间:2019-12-24 11:47:43      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:ble   container   comm   line   信息   tle   end   res   cell   

1、首先每个列都有一个title,里面放入完整信息,然后写一个如下的function,

1
2
3
4
5
6
7
8
function tdTitle(){
    $(‘th‘).each(function(index,element){
        $(element).attr(‘title‘,$(element).text());
    });
    $(‘td‘).each(function(index,element){
        $(element).attr(‘title‘,$(element).text());
    });
};

  2、在table数据渲染完的回调done中调用刚才写的function

1
2
3
4
5
6
7
8
9
10
table.render({
  cols:  [[ //标题栏
    {checkbox: true}
    ,{field: ‘id‘, title: ‘ID‘, width: 80}
    ,{field: ‘username‘, title: ‘用户名‘, width: 120}
  ]]
  ,done:function(res){
        tdTitle();
    }
});

layui table表格字段过长,展示不完整时,鼠标放到上面展示完整信息

标签:ble   container   comm   line   信息   tle   end   res   cell   

原文地址:https://www.cnblogs.com/uzxin/p/12090342.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!