<script>
$(document).ready(function () {
//限制字符个数
$(".box-right .title a").each(function () {
var maxwidth = 23;
if ($(this).text().length > maxwidth) {
$(this).text($(this).text().substring(0, maxwidth));
$(this).html($(this).html() + '...');
}
});
});
</script>