我正在尝试使用 jquery 来选择名为fieldset
which are 的元素visible
(应该只有 1 个),然后获取它的高度(如 fieldsetHeight)。然后我想设置一个 idvariable-div
为 == fieldsetHeight 的 div 的高度。
这是我到目前为止所拥有的:
var fieldsetHeight = ((document.(fieldset).is(':visible').offsetHeight) + 'px');
document.getElementById('variable-div').style.height = fieldsetHeight;
但它不工作...