$(function () {
$('#id').bootstrapTable({
...
columns: [{
...
,{
title: '列名',
field: 'text',
width: 280,
formatter: function (value) {
var text = value;
if(text && text.length > 15) {
text = text.substr(0, 15) + "...";
value = value.replace(/,/g, "\n");
text = "<a href='#' title='" + value + "' class='mtooltip' style='display: block;color: #0C0C0C'>" + text + "</a>"
return text;
}
}
},
...
],
onLoadSuccess:function (data) {
console.info(data)
},
// locale:'zh-CN',//中文支持,
responseHandler: function (res) {
//在ajax获取到数据,渲染表格之前,修改数据源
return res;
}
})
})