搜索

查看: 3065|回复: 11

[CSS/HTML] 使用display:none时隐藏DOM元素无法获取实际宽高的解决方法

[复制链接]
发表于 2023-5-4 16:48:53 | 显示全部楼层 |阅读模式
Editor 2023-5-4 16:48:53 3065 11 看全部
案例说明
当DOM元素被添加上display:none;的样式时,这个元素和它的子元素无法获取到实际的宽高。
如图,我设置了一个父元素和一个子元素,并且通过一个按钮切换父元素是否带有display:none;。

202207280846071.png

202207280846071.png

202207280846072.png

202207280846072.png


然后每次点击按钮后,在控制台输出两个元素的高度。

202207280846073.png

202207280846073.png


可以看到,当元素正常显示时,获取宽高正常。而当元素添加上`display:none;`之后,获取到的值变为0.
解决方法
使用jquery的actual方法可以很方便的获取到元素的真实宽高。
语法格式
//获取带有.hidden类的元素的实际高度
$('.hidden').actual('height');
使用actual方法后获取宽高正常,无论元素有没有被设置display:none;。(下图中两次输出,一次是带有display:none;的,一次是没有的,均能获取到实际高度)

202207280846074.png

202207280846074.png


原理:设置display:none;的元素没有物理尺寸,而同样能提供隐形效果的visibility则有物理尺寸,但是不能直接用visibility:hidden;代替display:none;,因为设置visibility之后的元素还是会占用页面空间的。正确的解决方法是要获取宽度或者高度时,首先将display:none;更换成display:block;,然后设置visibility让其隐形,从而获取实际宽高。
这里需要注意的是,当元素设置为块级元素时,可能会因为其大小使得周围的元素被推动,因此我们在获取某个元素的实际宽高时,除了设置display和visibility,还要设置position:absolute;,在获取到宽高值之后取消掉。
这个实现方法其实就是jquery的actual方法的内容:
源地址jquery.actual:Get the actual width/height of invisible DOM elements with jQuery.
如果打不开github也可以看下面的代码(jquery.actual.js的代码内容)
/*! Copyright 2012, Ben Lin (http://dreamerslab.com/)
* Licensed under the MIT License (LICENSE.txt).
*
* Version: 1.0.19
*
* Requires: jQuery >= 1.2.3
*/
;( function ( factory ) {
if ( typeof define === 'function' && define.amd ) {
    // AMD. Register module depending on jQuery using requirejs define.
    define( ['jquery'], factory );
} else {
    // No AMD.
    factory( jQuery );
}
}( function ( $ ){
  $.fn.addBack = $.fn.addBack || $.fn.andSelf;
  $.fn.extend({
    actual : function ( method, options ){
      // check if the jQuery method exist
      if( !this[ method ]){
        throw '$.actual => The jQuery method "' + method + '" you called does not exist';
      }
      var defaults = {
        absolute      : false,
        clone         : false,
        includeMargin : false,
        display       : 'block'
      };
      var configs = $.extend( defaults, options );
      var $target = this.eq( 0 );
      var fix, restore;
      if( configs.clone === true ){
        fix = function (){
          var style = 'position: absolute !important; top: -1000 !important; ';
          // this is useful with css3pie
          $target = $target.
            clone().
            attr( 'style', style ).
            appendTo( 'body' );
        };
        restore = function (){
          // remove DOM element after getting the width
          $target.remove();
        };
      }else{
        var tmp   = [];
        var style = '';
        var $hidden;
        fix = function (){
          // get all hidden parents
          $hidden = $target.parents().addBack().filter( ':hidden' );
          style   += 'visibility: hidden !important; display: ' + configs.display + ' !important; ';
          if( configs.absolute === true ) style += 'position: absolute !important; ';
          // save the origin style props
          // set the hidden el css to be got the actual value later
          $hidden.each( function (){
            // Save original style. If no style was set, attr() returns undefined
            var $this     = $( this );
            var thisStyle = $this.attr( 'style' );
            tmp.push( thisStyle );
            // Retain as much of the original style as possible, if there is one
            $this.attr( 'style', thisStyle ? thisStyle + ';' + style : style );
          });
        };
        restore = function (){
          // restore origin style values
          $hidden.each( function ( i ){
            var $this = $( this );
            var _tmp  = tmp[ i ];
            if( _tmp === undefined ){
              $this.removeAttr( 'style' );
            }else{
              $this.attr( 'style', _tmp );
            }
          });
        };
      }
      fix();
      // get the actual value with user specific methed
      // it can be 'width', 'height', 'outerWidth', 'innerWidth'... etc
      // configs.includeMargin only works for 'outerWidth' and 'outerHeight'
      var actual = /(outer)/.test( method ) ?
        $target[ method ]( configs.includeMargin ) :
        $target[ method ]();
      restore();
      // IMPORTANT, this plugin only return the value of the first element
      return actual;
    }
  });
}));
actual方法的参数
Example Code:(来源于jquery.actual github项目说明)
// get hidden element actual width
$( '.hidden' ).actual( 'width' );
// get hidden element actual innerWidth
$( '.hidden' ).actual( 'innerWidth' );
// get hidden element actual outerWidth
$( '.hidden' ).actual( 'outerWidth' );
// get hidden element actual outerWidth and set the `includeMargin` argument
$( '.hidden' ).actual( 'outerWidth', { includeMargin : true });
// get hidden element actual height
$( '.hidden' ).actual( 'height' );
// get hidden element actual innerHeight
$( '.hidden' ).actual( 'innerHeight' );
// get hidden element actual outerHeight
$( '.hidden' ).actual( 'outerHeight' );
// get hidden element actual outerHeight and set the `includeMargin` argument
$( '.hidden' ).actual( 'outerHeight', { includeMargin : true });
// if the page jumps or blinks, pass a attribute '{ absolute : true }'
// be very careful, you might get a wrong result depends on how you makrup your html and css
$( '.hidden' ).actual( 'height', { absolute : true });
// if you use css3pie with a float element
// for example a rounded corner navigation menu you can also try to pass a attribute '{ clone : true }'
// please see demo/css3pie in action
$( '.hidden' ).actual( 'width', { clone : true });
// if it is not a block element. By default { display: 'block' }.
// for example a inline element
$( '.hidden' ).actual( 'width', { display: 'inline-block' });
到此这篇关于使用display:none时隐藏DOM元素无法获取实际宽高的解决方法的文章就介绍到这了,更多相关隐藏DOM元素无法获取实际宽高的解决方法内容请搜索知鸟论坛以前的文章或继续浏览下面的相关文章希望大家以后多多支持知鸟论坛
知鸟论坛永久地址发布页:www.zn60.me
回复

使用道具 举报

发表于 2023-6-28 20:23:32 | 显示全部楼层
462710480 2023-6-28 20:23:32 看全部
其实我一直觉得楼主的品味不错!呵呵!知鸟论坛太棒了!
知鸟论坛永久地址发布页:www.zn60.me
回复

使用道具 举报

发表于 2023-6-28 21:46:36 | 显示全部楼层
胡37 2023-6-28 21:46:36 看全部
既然你诚信诚意的推荐了,那我就勉为其难的看看吧!知鸟论坛不走平凡路。
知鸟论坛永久地址发布页:www.zn60.me
回复

使用道具 举报

发表于 2023-6-29 00:56:47 | 显示全部楼层
心随674 2023-6-29 00:56:47 看全部
论坛不能没有像楼主这样的人才啊!我会一直支持知鸟论坛
知鸟论坛永久地址发布页:www.zn60.me
回复

使用道具 举报

发表于 2023-6-29 14:25:26 | 显示全部楼层
执着等待等wc 2023-6-29 14:25:26 看全部
我看不错噢 谢谢楼主!知鸟论坛越来越好!
知鸟论坛永久地址发布页:www.zn60.me
回复

使用道具 举报

发表于 2023-6-29 18:57:38 | 显示全部楼层
贺老师 2023-6-29 18:57:38 看全部
这个帖子不回对不起自己!我想我是一天也不能离开知鸟论坛
知鸟论坛永久地址发布页:www.zn60.me
回复

使用道具 举报

发表于 2023-6-29 19:47:17 | 显示全部楼层
幸福341 2023-6-29 19:47:17 看全部
楼主太厉害了!楼主,I*老*虎*U!我觉得知鸟论坛真是个好地方!
知鸟论坛永久地址发布页:www.zn60.me
回复

使用道具 举报

发表于 2023-6-30 08:18:25 | 显示全部楼层
ffycxyw2274436 2023-6-30 08:18:25 看全部
我看不错噢 谢谢楼主!知鸟论坛越来越好!
知鸟论坛永久地址发布页:www.zn60.me
回复

使用道具 举报

发表于 2023-6-30 10:29:37 | 显示全部楼层
Gordon520 2023-6-30 10:29:37 看全部
其实我一直觉得楼主的品味不错!呵呵!知鸟论坛太棒了!
知鸟论坛永久地址发布页:www.zn60.me
回复

使用道具 举报

发表于 2023-6-30 10:37:00 | 显示全部楼层
知足常乐77 2023-6-30 10:37:00 看全部
楼主发贴辛苦了,谢谢楼主分享!我觉得知鸟论坛是注册对了!
知鸟论坛永久地址发布页:www.zn60.me
回复

使用道具 举报

  • 您可能感兴趣
点击右侧快捷回复 【请勿灌水】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则 返回列表

RSS订阅| SiteMap| 小黑屋| 赞兔论坛
联系邮箱E-mail:zniao@foxmail.com
快速回复 返回顶部 返回列表