成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

JS無法獲取display為none的隱藏元素的寬度和高度的解決方案

siberiawolf / 912人閱讀

摘要:在實際開發(fā)中會遇到確實需要獲取隱藏元素的寬高,這兒所說的隱藏元素是為的元素??墒褂貌寮硗瓿桑湓创a如下使用實例插件地址

在實際開發(fā)中會遇到確實需要獲取隱藏元素的寬高,這兒所說的隱藏元素是display為none的元素。

可使用jQuery Actual Plugin插件來完成,其源碼如下:

    ;( 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;
        }
      });
    }));

使用實例:

    //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});

插件地址:http://dreamerslab.com/works

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/89769.html

相關文章

  • css面試題

    摘要:目前,除了及更早版本外,所有瀏覽器均已支持。視口單位中的視口,桌面端指的是瀏覽器的可視區(qū)域移動端指的就是中的。根據(jù)規(guī)范,視口單位主要包括以下個等于視口寬度的。等于視口高度的。生成相對定位的元素,相對于其正常位置進行定位。 css面試題 css垂直居中的方法有哪些? 已知高度的塊級子元素,采用絕對定位和負邊距.container { position: relative;}.verti...

    longmon 評論0 收藏0
  • 《css世界》- 詳細重點筆記與技巧

    摘要:概述在世界這本書中有一些黑魔法給列舉出來,在結(jié)合自己的理解。篇幅有點長,希望大家能夠堅持看完,一定會有收獲以下是摘自每章內(nèi)一些重要的概念與技巧。 概述 在《css世界》這本書中有一些黑魔法給列舉出來,在結(jié)合自己的理解。篇幅有點長,希望大家能夠堅持看完,一定會有收獲?。?!以下是摘自每章內(nèi)一些重要的概念與技巧。其中有解決圖片間隙的問題、小圖標與文字居中問題等; ps: 特別是 line-h...

    MasonEast 評論0 收藏0
  • 《css世界》- 詳細重點筆記與技巧

    摘要:概述在世界這本書中有一些黑魔法給列舉出來,在結(jié)合自己的理解。篇幅有點長,希望大家能夠堅持看完,一定會有收獲以下是摘自每章內(nèi)一些重要的概念與技巧。 概述 在《css世界》這本書中有一些黑魔法給列舉出來,在結(jié)合自己的理解。篇幅有點長,希望大家能夠堅持看完,一定會有收獲!??!以下是摘自每章內(nèi)一些重要的概念與技巧。其中有解決圖片間隙的問題、小圖標與文字居中問題等; ps: 特別是 line-h...

    趙連江 評論0 收藏0
  • CSS知識點及技巧整理

    摘要:當元素在容器中被滾動超過指定的偏移值時,元素在容器內(nèi)固定在指定位置。詳見浮動與清除浮動浮動相關知識屬性的取值元素向左浮動。是相對長度單位,相對于當前對象內(nèi)文本的字體尺寸。 這些個知識點是我個人認為的,下面我們就來看看這些個知識點。 1.怎么讓一個不定寬高的 DIV,垂直水平居中? 使用Flex 只需要在父盒子設置:display: flex; justify-content: cent...

    masturbator 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<