2

我想使用 jquery 显示有限的文本(50 个字符)。请让我怎么做。我正在使用以下代码。

var ta = $('title', item).text().replace(/\(.*?\)/, "");

这句话的输出是“未能获得非洲国家杯的参赛资格可能会给埃托奥的国脚带来遗憾”。我只想展示50个角色。

4

5 回答 5

3

你可以使用这样的东西:

String sOut = $('title', item).text().substring(0,50);

虽然我不知道那里item在做什么。:|

于 2012-10-16T08:01:19.040 回答
1

试试这个:

var ta = $('title', item).text().substring(0,50)
于 2012-10-16T08:01:14.653 回答
1
var ta = $('title', item).text();
var edited = ta.substring(0,50);

阅读更多

上面的代码是假设item是范围创建的

或者您可以使用 Jquery 链接将其写在一行中。

var ta = $('title', item).text().substring(0,50);
于 2012-10-16T08:01:25.013 回答
1
if(ta.length > 50){
   ta = ta.substring(0, 47) + '...';
}
于 2012-10-16T08:03:02.370 回答
0
var ta = $('title', item).text();
ta = ta.substring(0,50);
于 2012-10-16T08:01:57.617 回答