zoukankan      html  css  js  c++  java
  • 计算高度的常用值

    $(window).scrollTop();      滚动条距顶部距离(页面超出窗口的高度)

    $(document).scrollTop();     滚动条到顶部的垂直高度

    $(document).height()             页面的文档高度

    $(window).height()              窗口的高度

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>高度</title>
    <script src="http://files.cnblogs.com/tinyphp/jquery-1.3.2.min.js" type="text/javascript"></script>
    </head>
    
    <body>
    <script type="text/javascript">
    $(function(){
        $(window).scroll(function(){
        console.log("滚动条到顶部的垂直高度: "+$(document).scrollTop());
        console.log("页面的文档高度 :"+$(document).height());
        console.log('窗口的高度:'+$(window).height());
        console.log('滚动条距顶部距离(页面超出窗口的高度)'+$(window).scrollTop());
        console.log('----------------------------------');
        })
    })
    </script>
    <div class="box" style="height:800px; background:red"></div>
    </body>
    </html>
  • 相关阅读:
    UITableView 总结
    关于UIView的autoresizingMask属性的研究
    支付开发
    202011.11
    202011.10
    202011.09
    养成一个习惯,每天写博客,不放假就不变
    html重置功能
    echart折线图插件图片的宽度和页面的自适应
    点击使文字变文本框且可编辑的JS
  • 原文地址:https://www.cnblogs.com/tinyphp/p/3736399.html
Copyright © 2011-2022 走看看