如何让这段代码不断循环遍历这些项目?

时间:2014-07-16 12:56:09

标签: javascript settimeout

我有以下代码:

common_load_help("photo.xml");
function common_load_help(file)
{
  $(document).ready(function()
  {
    $.ajax(
    {
      type: "GET",
      url: SITE_URL + "/assets/help/" + file, //call this url
      dataType: 'xml',
      success: function(xml) //when we have the data...
      {
        var length = xml.getElementsByTagName("item").length;
        console.log("length: " + length);
        $('item', xml).each(function(i, el) //go through each help item
        {
          function looper()
          {
            $("#design-tips-content").html($(el, this).text());
          }
          setTimeout(looper, 5000);
        });

      }
    });
  });
}

我想要发生的是它将第一个元素放在design-tips-content div中,然后等待5000秒,然后放入第二个,然后放第三个,然后循环回第一个元素。我该怎么做呢?现在它似乎只是显示最后一个元素。

注意:我尝试为此创建一个jsfiddle(http://jsfiddle.net/allisonc/c8RLZ/),但我收到错误:MLHttpRequest cannot load http://www.asa.tframes.org:1881/assets/help/photo.xml. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://fiddle.jshell.net' is therefore not allowed access.

1 个答案:

答案 0 :(得分:0)

成功函数中的这段代码应该可行。它通过构建一系列项目来工作。文本,并将当前索引值存储在变量中。然后,它使用setInterval不断循环遍历所有项目。

var tips = $('item', xml).get().map(function(item){
    return $(item).text();
});

var currentIndex = 0;

function looper() {
    if(currentIndex>=tips.length) {
        currentIndex = 0;
    }
    $('#design-tips-content').html(tips[currentIndex]);
    currentIndex++;
}

looper();
setInterval(looper, 5000);

Working fiddle