jQuery: Get height of hidden element in jQuery

后端 未结 14 2469
南方客
南方客 2020-11-22 09:49

I need to get height of an element that is within a div that is hidden. Right now I show the div, get the height, and hide the parent div. This seems a bit silly. Is there a

14条回答
  •  面向向阳花
    2020-11-22 10:18

    You could do something like this, a bit hacky though, forget position if it's already absolute:

    var previousCss  = $("#myDiv").attr("style");
    
    $("#myDiv").css({
        position:   'absolute', // Optional if #myDiv is already absolute
        visibility: 'hidden',
        display:    'block'
    });
    
    optionHeight = $("#myDiv").height();
    
    $("#myDiv").attr("style", previousCss ? previousCss : "");
    

提交回复
热议问题