jquery dataTable 内容过长显示省略号
直接在<head></head>
标签中加上样式:
<head>
<style>
<!-- 只修改表格得第一列,第二列 -->
.list_result td:nth-child(1),.list_result td:nth-child(2){
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
<!-- 修改所有td -->
.list_result td{
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
</style>
</head>