我想使用 jquery 显示有限的文本(50 个字符)。请让我怎么做。我正在使用以下代码。
var ta = $('title', item).text().replace(/\(.*?\)/, "");
这句话的输出是“未能获得非洲国家杯的参赛资格可能会给埃托奥的国脚带来遗憾”。我只想展示50个角色。
我想使用 jquery 显示有限的文本(50 个字符)。请让我怎么做。我正在使用以下代码。
var ta = $('title', item).text().replace(/\(.*?\)/, "");
这句话的输出是“未能获得非洲国家杯的参赛资格可能会给埃托奥的国脚带来遗憾”。我只想展示50个角色。
你可以使用这样的东西:
String sOut = $('title', item).text().substring(0,50);
虽然我不知道那里item
在做什么。:|
试试这个:
var ta = $('title', item).text().substring(0,50)
var ta = $('title', item).text();
var edited = ta.substring(0,50);
上面的代码是假设item是范围创建的
或者您可以使用 Jquery 链接将其写在一行中。
var ta = $('title', item).text().substring(0,50);
if(ta.length > 50){
ta = ta.substring(0, 47) + '...';
}
var ta = $('title', item).text();
ta = ta.substring(0,50);