使用 jss 将等效大小设置为 div

Set equivalent size to div with jss

我有两个 div,id 分别是 firstCard 和 resultCard。

var newHeight = document.querySelector('#resultCard').clientHeight;
document.querySelector('#firstCard').style.height = newHeight;

alert(document.querySelector('#resultCard').clientHeight);
alert(document.querySelector('#firstCard').clientHeight);

我想将 firstCard 的高度调整为等于 resultCard。我尝试的方法不起作用,我的警报指示两个不同的值(resultCard 为 432,firstCard 为 400)。

我有什么遗漏的吗?

编辑:缺少 = newHeight + "px"; 还必须在我的 css.

中设置 height: auto
document.querySelector('#firstCard').style.height = newHeight + "px";