$(".p").each(function(i){
len=$(this).text().length;
if(len>80)
{
$(this).text($(this).text().substr(0,80)+'...');
}
});
我的一些输出很好像
abc def...
但其中一些就像
1234 45 ...
如何修剪空间?我试过$ .trim但是没有用。
答案 0 :(得分:1)
这应该有效:
$(".p").text(function() {
var text = $(this).text();
if (text.length > 80) {
return $.trim(text.substr(0, 80)) + '...';
} else {
return text;
}
});