$(document).ready( function () {
$('#example').dataTable( {
"bAutoWidth": false, //是否启用自动适应列宽
"aoColumns": [ //设定各列宽度
{"sWidth": "120px"},
{"sWidth": "140px"},
{"sWidth": "140px"},
{"sWidth": "*"} ]
} );
} );