中金网:function (str) { if (str.length < 60) { return str; } else { return str.substring(0, 60) + ''; } }
统计代码