Created
June 17, 2014 06:20
-
-
Save foru17/4491f351b433dd3d4194 to your computer and use it in GitHub Desktop.
滑动到底部自动刷新
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var wrap=document.getElementById('page'); | |
var contentHeight=wrap.offsetHeight; | |
var yOffset=window.pageYOffset; | |
var y = yOffset + window.innerHeight; | |
function autoRefesh(){ | |
wrap=document.getElementById('page'); | |
contentHeight=wrap.offsetHeight; | |
yOffset=window.pageYOffset; | |
y = yOffset + window.innerHeight; | |
console.log('y是'+y); | |
if((y+100) >= contentHeight){//执行 和加载新信息 | |
console.log('Pull new data'); | |
dataLoad.get('a.json'); | |
} | |
} | |
window.onscroll=autoRefesh; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment