jQuery無法獲取隱藏元素的寬高
阿新 • • 發佈:2019-01-22
用jQuery寫一個通過點選左右圖示來翻閱圖片的小外掛,寫好後測試可以正常執行,但是放到Tab中後發現只有第一個Tab中的程式碼能夠正常執行,其它全部罷工了。
用Chrome自帶的開發工具一查,發現罷工的Tab中。小外掛一些重要元素的寬度都變成“0”了,因為這個小外掛需要計算動態寬度來實現,於是馬上想到是小外掛中的寬度獲取失敗了,果不其然。
汗,居然一直沒發現jQuery無法獲取隱藏元素(display:none)的寬度(width)和高度(height),為了相容IE6,我用1.x版,而且是官方最新的1.10.2版,不知道在2.x版中這個問題有沒有解決。
既然jQuery都不支援,那麼Javascript也就肯定不支援了,網上搜索了一下,有個解決方案是用visibility:hidden來代替display:none,由於visibility:hidden佔用物理空間,因此可以獲取寬高。
問題是這需要我去改動已經寫好的Tab外掛,這種拆東牆補西牆的事情,總會讓人感覺不爽的。長時間搜尋其它解決方案無果,就在我快要妥協的時候,突然眼前一亮,發現了個好東西:jQuery Actual
可以說它幾乎完美的解決了這個問題,而且使用方法極其簡單,使用$('#someElement').actual('width')的方式來代替$('#someElement').width()就可以了,相容性也十分出色,可以相容IE6瀏覽器,壓縮後體積只有1.1K也是一大亮點,更牛的是還支援inner和outer的計算。
官方資訊
jQuery Actual 官網
jQuery Actual 演示
jQuery Actual 文件
jQuery Actual 下載
jQuery版本要求
jQuery 1.2.3+
所相容的瀏覽器
Firefox 2.0+
Internet Explorer 6+
Safari 3+
Opera 10.6+
Chrome 8+
安裝方法
HTML文件需要宣告DOCTYPE
引用JS檔案即可
<script type="text/javascript" src="path/jquery.min.js"></script>
<script type="text/javascript" src="path/jquery.actual.js"></script>
使用方法
程式碼範例
//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});
個人覺得jQuery官方應該考慮將這個功能寫進核心,那就更方便了。為了防止以後jQuery Actual的官網打不開(現在就時不時會和諧)或者下載不了,在這裡存一份jquery.actual.js的原始碼,以備不時只需。
原始碼:jquery.actual.js
;( 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
};
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: block !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 (){
var $this = $( this );
// Save original style. If no style was set, attr() returns undefined
tmp.push( $this.attr( 'style' ));
$this.attr( '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;
}
});
})( jQuery );
用Chrome自帶的開發工具一查,發現罷工的Tab中。小外掛一些重要元素的寬度都變成“0”了,因為這個小外掛需要計算動態寬度來實現,於是馬上想到是小外掛中的寬度獲取失敗了,果不其然。
汗,居然一直沒發現jQuery無法獲取隱藏元素(display:none)的寬度(width)和高度(height),為了相容IE6,我用1.x版,而且是官方最新的1.10.2版,不知道在2.x版中這個問題有沒有解決。
既然jQuery都不支援,那麼Javascript也就肯定不支援了,網上搜索了一下,有個解決方案是用visibility:hidden來代替display:none,由於visibility:hidden佔用物理空間,因此可以獲取寬高。
問題是這需要我去改動已經寫好的Tab外掛,這種拆東牆補西牆的事情,總會讓人感覺不爽的。長時間搜尋其它解決方案無果,就在我快要妥協的時候,突然眼前一亮,發現了個好東西:jQuery Actual
可以說它幾乎完美的解決了這個問題,而且使用方法極其簡單,使用$('#someElement').actual('width')的方式來代替$('#someElement').width()就可以了,相容性也十分出色,可以相容IE6瀏覽器,壓縮後體積只有1.1K也是一大亮點,更牛的是還支援inner和outer的計算。
官方資訊
jQuery Actual 官網
jQuery Actual 演示
jQuery Actual 文件
jQuery Actual 下載
jQuery版本要求
jQuery 1.2.3+
所相容的瀏覽器
Firefox 2.0+
Internet Explorer 6+
Safari 3+
Opera 10.6+
Chrome 8+
安裝方法
HTML文件需要宣告DOCTYPE
引用JS檔案即可
<script type="text/javascript" src="path/jquery.min.js"></script>
<script type="text/javascript" src="path/jquery.actual.js"></script>
使用方法
程式碼範例
//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});
個人覺得jQuery官方應該考慮將這個功能寫進核心,那就更方便了。為了防止以後jQuery Actual的官網打不開(現在就時不時會和諧)或者下載不了,在這裡存一份jquery.actual.js的原始碼,以備不時只需。
原始碼:jquery.actual.js
;( 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
};
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: block !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 (){
var $this = $( this );
// Save original style. If no style was set, attr() returns undefined
tmp.push( $this.attr( 'style' ));
$this.attr( '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;
}
});
})( jQuery );