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'のサイズはどうなるでしょうか? –
DOMに配置されていないものの高さをどのように取得できますか?まだ高さはありません! –
@ジャック:厳密にはそうではありません。 –