求大神 帮忙
html页面使用在Android APP里 怎么让它的页面滑动到底部 跳转到另外的页面呢
$(window).scroll(function(){
var scrollTop = $(this).scrollTop();
var scrollHeight = $(document).height();
var windowHeight = $(this).height();
if(scrollTop + windowHeight == scrollHeight){
window.location.href="operate2.html";
}
if(scrollTop==0){
window.location.href="product.html"
}
});
这个不行 为什么
刚刚试了一下,你windowHeight可能得到的不是原来窗口的高度,而且我也觉得你不是用手机来真测吧,所以才会有这个问题。
$(window).scroll(function(){
var scrollTop = $(this).scrollTop();
var scrollHeight = $(document).height();
$("body").append("<s class='c'></s>");
var windowHeight=$(".c").css({"position":"fixed", "top":"0", "bottom":"0", "left":"0", "right":"0"}).height();
if(scrollTop + windowHeight == scrollHeight){
window.location.href="operate2.html";
}
if(scrollTop==0){
window.location.href="product.html"
}
$(".c").remove();
});
谢谢 还是不行