使用$ .trim的$ .trim空间在Jquery中不起作用

时间:2015-01-01 01:03:24

标签: javascript jquery

        $(".p").each(function(i){
          len=$(this).text().length;
          if(len>80)
          {
            $(this).text($(this).text().substr(0,80)+'...');
          }
        });  

我的一些输出很好像

abc def...

但其中一些就像

1234 45 ...

如何修剪空间?我试过$ .trim但是没有用。

1 个答案:

答案 0 :(得分:1)

这应该有效:

$(".p").text(function() {
    var text = $(this).text();
    if (text.length > 80) {
        return $.trim(text.substr(0, 80)) + '...';
    } else {
        return text;
    }
});