//Test function
function createDiv()
{
textContainer = $(document.createElement("div"));
$(textContainer[0]).html(msg);
var ctrlHeight = $(textContainer).height();
textContainer.show();
}
如果我检查 div 的高度,它会返回 0,但如果我在调用后检查它show
,它会返回高度。为什么?