スクロールバーのリスニングとコンテンツは、スクロールバーとともに動的にロードされます.
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
//
var content=document.getElementById("img").innerHTML;
// , ,
function addLi(){
document.getElementById("img").innerHTML+=content;
}
/*
* , jQuery js , Jquery $(obj).scroll();
*/
$(window).scroll(function(){
// , Ie documentElement , IE8
var htmlHeight=document.body.scrollHeight||document.documentElement.scrollHeight;
//clientHeight ,
var clientHeight=document.body.clientHeight||document.documentElement.clientHeight;
//scrollTop top ,
var scrollTop=document.body.scrollTop||document.documentElement.scrollTop;
// top ;
if(scrollTop+clientHeight==htmlHeight){
addLi();
}
})
以上
この方法はIe 8の主流のブラウザがほとんど互換性があるので、試してみてください~~