setInterval(function() {
var prevTopArticle = $("#toparticles table:first").html();
$("#toparticles").load("myurloffeed.com/topfeed", function()
{
alternateBG();
var newTopArticle = $("#toparticles table:first").html();
if (prevTopArticle!=newTopArticle)
{
$("#toparticles table:first").effect("highlight", {color:"#faffc4"}, 2000);
}
});
}, 8000);
因此,它将当前的第一个表项设置为变量,将不带表的表加载到todivs div中,如果它们不同,它将执行突出显示效果,但是无论如何它都会执行突出显示效果,完全不确定为什么不这样做工作。
最佳答案
出于某种原因,其中一篇文章输出的是Twitter链接,而另一篇文章则没有,因为提要相同。使用console.log的两个变量找出来。