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());
    });
};

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM