gpt4 book ai didi

javascript - ReactJS - 获取元素的高度

转载 作者:IT王子 更新时间:2023-10-29 02:48:28 36 4
gpt4 key购买 nike

如何在 React 渲染元素后获取该元素的高度?

HTML

<div id="container">
<!-- This element's contents will be replaced with your component. -->
<p>
jnknwqkjnkj<br>
jhiwhiw (this is 36px height)
</p>
</div>

ReactJS

var DivSize = React.createClass({

render: function() {
let elHeight = document.getElementById('container').clientHeight
return <div className="test">Size: <b>{elHeight}px</b> but it should be 18px after the render</div>;
}
});

ReactDOM.render(
<DivSize />,
document.getElementById('container')
);

结果

Size: 36px but it should be 18px after the render

它正在计算渲染前的容器高度 (36px)。我想在渲染后获得高度。在这种情况下,正确的结果应该是 18px。 jsfiddle

最佳答案

对于那些对使用 react hooks 感兴趣的人,这可能会帮助您入门。

import React, { useState, useEffect, useRef } from 'react'

export default () => {
const [height, setHeight] = useState(0)
const ref = useRef(null)

useEffect(() => {
setHeight(ref.current.clientHeight)
})

return (
<div ref={ref}>
{height}
</div>
)
}

关于javascript - ReactJS - 获取元素的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35153599/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com