JQuery 无限循环通过 .each 迭代,每次迭代之间有暂停
基本上我是在循环浏览推文。我想在每条推文之间暂停 20 秒,在发布最后一条推文之后,我想返回第一条推文并无限重复该过程。
到目前为止,这是我的代码,我尝试通过阅读其他人的示例来解决这个问题,但似乎还不能击中要害。我也一直遇到设置超时功能。
// DisplayTweets.
function displayTweets(tweets)
{
// Checks if any tweets exist.
if ($.isArray(tweets) !== false)
{
// Show error message.
$('p#tweet').text(tweets);
}
else
{
// Parse JSON into Javascript object.
var objTweets = jQuery.parseJSON(tweets);
// Loop through
$.each(objTweets, function(i, objTweet) {
//alert(objTweet.tweet);
$('p#tweet').text(objTweet.tweet);
});
}
}
Basically I am looping through tweets. I want to pause for 20seconds between each tweet and after the last tweet I want to go back to tweet one and repeat the process infinitely.
Here is my code so far, I've tried tackling this problem by reading other peoples examples but cant quite seem to hit the nail on the head. I do keep running into the set timeout function too.
// DisplayTweets.
function displayTweets(tweets)
{
// Checks if any tweets exist.
if ($.isArray(tweets) !== false)
{
// Show error message.
$('p#tweet').text(tweets);
}
else
{
// Parse JSON into Javascript object.
var objTweets = jQuery.parseJSON(tweets);
// Loop through
$.each(objTweets, function(i, objTweet) {
//alert(objTweet.tweet);
$('p#tweet').text(objTweet.tweet);
});
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需编写一个要使用值数组调用的函数:
这是一个实时示例,出于演示目的,时间减少到 2 秒: http://jsfiddle.net/tjAa6/
Just write a function to be called with the array of values:
Here's a live example with the time reduced to 2 seconds for demo purpose: http://jsfiddle.net/tjAa6/
我不会使用
$.each
因为你必须在循环中暂停(也许使用delay()
?);setTimeout
可能是执行此操作的最佳方法:只需使用回调函数递归调用显示下一条推文函数。I wouldn't use
$.each
as you'd have to stick a pause (perhaps withdelay()
?) in the loop;setTimeout
is probably the best way to do this: just use the callback function to call a show next tweet function recursively.