Home  >  Article  >  Web Front-end  >  Basic operation example of ScrollDown_javascript skills

Basic operation example of ScrollDown_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:32:271740browse

Copy code The code is as follows:

$(document).ready(function () {
$(window).scroll(function () {
if ($(window).scrollTop() == $(document).height() - $(window).height()) //Scroll bar Triggered when scrolling to the bottom
{
}

});
})
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn