在jQuery中,我想在將其附加到主體之前獲取克隆對象的高度。獲取克隆對象的動態高度
注意:我沒有在CSS中指定寬度和高度(這是要求)。
可能嗎?
<body>
<style>.square {}</style>
<script>
jQuery(function($) {
var o = $(".square").clone(true);
$(o).css('height','auto').html("Some stuff...<br/><br/>");
// output 0 (Question: how to get the height?)
console.log($(o).height());
$(o).appendTo("body");
// output the height (i.e. 38)
console.log($(o).height());
});
</script>
<div class="square"></div>
</body>
你嘗試了嗎?沒有明確維度的空白'div'的大小_mean_? –
如何獲得未放置在DOM中的東西的高度?它還沒有高度! –
@傑克:這不完全正確。 –