是支持的跨域的:设置dataType:'jsonp',
如:
$('#table').bootstrapTable({
url:'http://www.xx.com/getUser',
method: 'get',
dataType:'jsonp',
sidePagination: "server",
})
其实bootstrapTable里面的实现也是通过$.ajax实现的,所以是可以的
DataTables是支持JSONP数据源的