$("a.newslinks").each(function(){
if ($(this).text().length > 38) {
$(this).text().substr(35); //does not work
$(this).append('...'); //works
$(this).css({ "color" : "#ff00cc" }); //works
}
});
如果链接的文本长度超过 38 个字符,我如何将其修剪为 35 个字符并在末尾添加省略号?