在 jQuery 中获取隐藏元素的高度
处理隐藏元素时,检索其高度可能具有挑战性。暂时显示元素以测量其高度然后再次隐藏它的传统方法似乎效率低下。有没有更优化的解决方案?
jQuery 1.4.2 方法
这里是一个使用 jQuery 1.4.2 的例子:
<code class="js">$select.show(); optionHeight = $firstOption.height(); // Obtain height after displaying the element $select.hide();</code>
这个方法缺点是改变元素的可见性,这可能会导致不必要的副作用。
破解元素的样式
另一种方法是操纵元素的样式以使其计算高度时不可见:
<code class="js">var previousCss = $("#myDiv").attr("style"); // Store the original style // Set visibility to 'hidden' and display to 'block' $("#myDiv").css({ position: 'absolute', // Optional if the element is already absolute visibility: 'hidden', display: 'block' }); optionHeight = $("#myDiv").height(); // Measure height with modified visibility // Restore the original style $("#myDiv").attr("style", previousCss ? previousCss : "");</code>
以上是jQuery中如何高效获取隐藏元素的高度?的详细内容。更多信息请关注PHP中文网其他相关文章!