9
ReactJS - Отримайте висоту елемента
Як я можу отримати висоту елемента після того, як 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 …
121
javascript
reactjs