案例说明
当dom元素被添加上display:none;的样式时,这个元素和它的子元素无法获取到实际的宽高。
如图,我设置了一个父元素和一个子元素,并且通过一个按钮切换父元素是否带有display:none;。


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

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

原理:设置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元素无法获取实际宽高的解决方法内容请搜索代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持代码网!
发表评论