本文主要是介绍dataTables设置表头居中和列内容居中,以及过多隐藏悬浮显示,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
设置dataTables列内容居中
.table>tbody>tr>td{text-align:center;}
设置表头居中
.table>thead:first-child>tr:first-child>th{text-align:center;}
列内容过长实现隐藏并悬浮显示
{"data": "operationInfo","render": function (data, type, row) {if (data.length > 40) {return "<a title='" + data + "' href='#' style='text-decoration: none;'>" + data.trim().substr(0, 40) + "..." + "</a>";} else {return data;}}}
这篇关于dataTables设置表头居中和列内容居中,以及过多隐藏悬浮显示的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!