zoukankan      html  css  js  c++  java
  • jQuery获取window、document、dom元素的高度和宽度函数分析

     (本文转载: http://csumissu.iteye.com/blog/1118790

      jQuery(window).height()代表了当前可见区域的大小,而jQuery(document).height()则代表了整个文档的高度,可视具体情况使用.

            注意当浏览器窗口大小改变时(如最大化或拉大窗口后) jQuery(window).height() 随之改变,但是jQuery(document).height()是不变的。

     以下为获取高度或宽度函数的jQuery源代码

    // 创建jQuery.height(size)  jQuery.width(size)
    //调用each方法创建两个相似的函数
    jQuery.each([ "Height", "Width" ], function( i, name ) {
     
        var type = name.toLowerCase();
     
        jQuery.fn[ type ] = function( size ) {
     
            var elem = this[0];
            if ( !elem ) {
                return size == null ? null : this;
            }
     
            if ( jQuery.isFunction( size ) ) {
                return this.each(function( i ) {
                    var self = jQuery( this );
                    self[ type ]( size.call( this, i, self[ type ]() ) );
                });
            }
     
            // 获取window对象的高度或宽度 ($(window).width() ) 实际上是当前可见区域的高度或宽度
            if ( jQuery.isWindow( elem ) ) {
                // Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
                // 3rd condition allows Nokia support, as it supports the docElem prop but not CSS1Compat
                // 以上英文的意思是依赖于Quirks 或 Standards 文档模式来使用
                // document.documentElement (实际上就是<html/>元素) 或 document.body
                var docElemProp = elem.document.documentElement[ "client" + name ];
                return elem.document.compatMode === "CSS1Compat" && docElemProp ||
                    elem.document.body[ "client" + name ] || docElemProp;
     
            // 获取整个文档对象(document)的宽度或高度
            } else if ( elem.nodeType === 9 ) {
                // Either scroll[Width/Height] or offset[Width/Height], whichever is greater
                return Math.max(
                    elem.documentElement["client" + name],
                    elem.body["scroll" + name], elem.documentElement["scroll" + name],
                    elem.body["offset" + name], elem.documentElement["offset" + name]
                );
     
            // 获取DOM元素的高度或宽度
            } else if ( size === undefined ) {
                var orig = jQuery.css( elem, type ),
                    ret = parseFloat( orig );
     
                return jQuery.isNaN( ret ) ? orig : ret;
     
            // 设置DOM元素的高度或宽度 (当没有单位时默认为像素值)
            } else {
                return this.css( type, typeof size === "string" ? size : size + "px" );
            }
        };
     
    });

     

  • 相关阅读:
    常用Docker命令
    Ubuntu16.04安裝最新Nvidia驱动
    (转)5分钟让你明白“软链接”和“硬链接”的区别
    Centos7 Zabbix3.2集群安装
    Kettle定时抽取两个库中的两个表到目标库SYS_OPLOG表
    Elasticsearch Java API—多条件查询(must)
    logstash采集tomcat日志、mysql错误日志
    让Logstash每次都从头读文件及常见问题
    logstash之multiline插件,匹配多行日志
    spring security积累
  • 原文地址:https://www.cnblogs.com/zjfazc/p/2604999.html
Copyright © 2011-2022 走看看