在一个脚本中自动刷新和自动上下滚动

Auto refresh and auto scroll up and down in one script

我已经有单独的自动刷新代码和自动滚动代码。

我希望它们在一个函数中...我该怎么做?

这是我的自动刷新代码

var auto_refresh = setInterval(function ()
{
  $('#load_tweets').load('http://myayg.com/index.php?route=salesTracker2.results').fadeIn("slow");
}, 10000); 

和我的自动滚动

function scroll(speed) {
  $('html, body').animate({ scrollTop: $(document).height() }, speed, function() {
    $(this).animate({ scrollTop: 0 }, speed);
  });
}

speed = 30000;

scroll(speed)
setInterval(function(){scroll(speed)}, speed * 2);

我想将它们放在一个脚本中...我该怎么做?

这应该有效....

function doRefreshAndScroll(speed) {
  $('#load_tweets').load('http://myayg.com/index.php?route=salesTracker2.results', function(){
    $('html, body').animate({ scrollTop: $(document).height() }, speed, function() {
      $(this).animate({ scrollTop: 0 }, speed);
    });
  }).fadeIn("slow")
}

var speed = 30000
setInterval(doRefreshAndScroll(speed), speed * 2)