0
我有兩個<div>
標籤各有不同classNames
可以說,一個陣營組件元素的元素:className="firstClass"
和className="secondClass"
。反應設定一個類名的最小高度等於與其他類名的最小高度
如何設置min-height
的值secondClass
等於min-height
的值firstClass
?
我有兩個<div>
標籤各有不同classNames
可以說,一個陣營組件元素的元素:className="firstClass"
和className="secondClass"
。反應設定一個類名的最小高度等於與其他類名的最小高度
如何設置min-height
的值secondClass
等於min-height
的值firstClass
?
不要直接設置DOM。你需要閱讀setState
和props
。
setState
會觸發重新渲染,因此無論您何時執行this.setState({minHeight: newValueHere});
它都會自動使用新值更新渲染方法。
class Component extends React.Component {
constructor() {
super();
this.state = {
minHeight: "600px"
};
}
render() {
return (
<div>
<div className="firstClass" style={{minHeight: this.state.minHeight}} />
<div className="secondClass" style={{minHeight: this.state.minHeight}} />
</div>
);
}
}
如何設置'firstClass'的'min-height'值? –
在'componentDidMount()'函數中,我設置了'min-height'。 –