jquery获取元素到屏幕底的可视距离

2024-12-13 11:59:55
推荐回答(3个)
回答1:

$(window).height();//是文档窗口高度

$("div").offset().top//是标签距离顶部高度

$(document).scrollTop();//是滚动条高度

$("div").height();//是标签高度

用户要的高度+$("div").height()+[$("div").offset().top-$(document).scrollTop()]=$(window).height();

扩展资料:

JQuery参考函数

$(“元素”).prepend(content); 将content作为该元素的一部分,放到该元素的最前面 

$(“元素”).prependTo(content); 将该元素作为content的一部分,放content的最前面 

$(“元素”).remove(“exp”); 删除所有含有exp的元素 

$(“元素”).wrap(“html”); 用html来包围该元素 

$(“元素”).wrap(element); 用element来包围该元素

参考资料来源:百度百科-jQuery

回答2:

$(window).height();//是文档窗口高度
$("div").offset().top//是标签距离顶部高度
$(document).scrollTop();//是滚动条高度
$("div").height();//是标签高度
你要的高度+$("div").height()+[$("div").offset().top-$(document).scrollTop()]=$(window).height();

经过简单的数学变换即可得到你要的值了

回答3:

坐等大神接单