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