0

我正在使用 jquery .height() 来获取文档高度。

请检查这个 http://jsfiddle.net/rkumarnirmal/86q37/

获取高度后,我将元素放置在该位置。在哪里可以看到文档高度实际上是错误的,因为它超出了该区域。

我该如何解决这个问题?

谢谢!

4

3 回答 3

3

top相对于#dummy 的顶部。

所以你需要从页面的高度中减去#dummy的高度:

$(function(){
    var h = $(document).height() - $("#dummy").height();
    $("#dummy").css("top", h+"px");
})​

我应该提一下,你可以在纯 CSS 中做到这一点:

http://jsfiddle.net/86q37/3/

如果你想支持旧的浏览器,你要么需要查找一些 CSS 技巧来做到这一点,要么只使用 JS。

于 2012-05-16T21:58:56.260 回答
1

一种解决方案是使用 jQuery,并从 body 的高度中减去元素的高度(并且您不必担心将高度添加px到高度,jQuery 会在内部处理它):

$(function(){
    var h = $(document).height();
    $("#dummy").css("top", h - $('#dummy').height());
})​

JS 小提琴演示

更简单的解决方案是简单地使用 CSS:

#dummy {
    position: absolute;            
    width: 100px;
    height: 100px;
    bottom: 0; /* aligns the bottom of the element zero pixels from the bottom of the document */
    left: 0; /* aligns the left side of the element zero pixels from the left side of the document */
    background-color: red;
}​

JS 小提琴演示

于 2012-05-16T22:01:53.930 回答
1

.height正在返回正确的值。但是您将框的顶部位置设置为文档的高度。请参阅下面的演示以获得更好的理解,

$(function(){
    var h = $(document).height();
    $("#dummy").css("top", function () {
        return (h - $(this).height()) +"px"; 
      //This will place the box at top position subtracting 
      //the documentHeight - dummyHeight;
    });
})

演示

于 2012-05-16T22:00:22.627 回答