我正在开发一个网站,用户在其中输入一个随机单词并获取相关推文列表。
使用 json 获取包含链接、回复或主题标签的推文时,如何排除它们?
这是我的 jQuery 代码:
<script>
function go(){
var url = "http://search.twitter.com/search.json?callback=results&q=" + $("#text").val();
$("<script/>").attr("src", url).appendTo("body");
$("#text").remove();
}
$("#text").keydown(function(e){ if( e.which == 13 ) go(); });
function results(r){
window.results = r.results;
window.theIndex = 0;
displayNext();
}
function displayNext(){
if( window.theIndex >= window.results.length ){
return;
}
$('.content').remove();
$('.helper').remove();
createDiv( window.results[window.theIndex] );
window.theIndex++;
setTimeout(displayNext, 4000);
}
function createDiv(status){
var tweets = status.text;
$("<span class='content'>")
.html(tweets)
.appendTo("body");
$("<span class='helper'>")
.appendTo("body")
}
</script>