我有一个twitter fetcher脚本,只是想从推文中删除大量字符。我需要获取Twitter fetcher的输出,剪切并用HTML替换。
所以这是我的代码:
var str = $("#tweets .tweet").each(function() { $(this).text(); });
$("#tweets .tweet").each(function() {
$(this).html(str.substring(0, 50));
});
但我收到错误未捕获的TypeError:str.substring不是函数
答案 0 :(得分:1)
$("#tweets .tweet").each(function() {
$(this).html($(this).text().substring(0, 50));
});