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

table.render({
  cols:  [[ 
    {checkbox: true} //多选框
    ,{field: 'id', title: 'ID'}
    ,{field: 'name', title: '名字'}
  ]]
  ,done:function(res, curr, count){
        tabTitle();//调用方法
    }
});

tabTitle方法:

function tabTitle(){
    $('th').each(function(index,element){
        $(element).attr('title',$(element).text());
    });
    $('td').each(function(index,element){
        $(element).attr('title',$(element).text());
    });
};

 

posted @ 2020-05-21 14:47  大云之下  阅读(3014)  评论(0编辑  收藏  举报
大云之下