我想从div的底部获取最低值。但是在控制台日志中我一个接一个地得到2个值。第一个是底值,第二个是1051.1666870117188。但我只想要第一个。为什么我会遇到这样的问题。我的代码是
function get_bottom(){
$elem1 = $('.your-cart');
var bottom = $(document).height() - ($elem1.offset().top + $elem1.height());
console.log(bottom);
}
$(document).scroll(get_bottom);
答案 0 :(得分:0)
试试这个,它应该给你你想要的东西
var bottom = $('#bottom').position().top+$('#bottom').outerHeight(true)