最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

html - How to call javascript function each time user scrolls - Stack Overflow

programmeradmin0浏览0评论

I want to call a javascript function each time Facebook updates their feed for a user (when he scrolls). Any idea how I can do that?

This does not work:

if (document.body.scrollTop > 30) {
        addArt();
}

Thank you

I want to call a javascript function each time Facebook updates their feed for a user (when he scrolls). Any idea how I can do that?

This does not work:

if (document.body.scrollTop > 30) {
        addArt();
}

Thank you

Share Improve this question asked Nov 4, 2016 at 15:07 nico_lrxnico_lrx 2903 gold badges23 silver badges39 bronze badges 2
  • 1 window.addEventListener("scroll", addArt()); might work – Kevin Kloet Commented Nov 4, 2016 at 15:09
  • There's an onscroll event if I remember correctly – GordonM Commented Nov 4, 2016 at 15:09
Add a ment  | 

3 Answers 3

Reset to default 7

Using an onscroll function:

window.onscroll = function() { }

You need to attach it to the window's scroll event listener. I have wrapped it inside an onload event, so that it gets executed after the document is loaded.

window.onload = function () {
  window.onscroll = function () {
    if (document.body.scrollTop > 30) {
      addArt();
    }
  };
};

Or if you are using jQuery, use:

$(function () {
  $(window).scroll(function() {
    if (document.body.scrollTop > 30) {
      addArt();
    }
  });
});

Using jquery, you can use this function to run code every time the user scrolls

$( window ).scroll(function() { $(window).scrollTop() > 30) { addArt(); } });

window.onscroll = function() { if (document.body.scrollTop > 30) { addArt(); } };

edit: added none jquery version

发布评论

评论列表(0)

  1. 暂无评论