作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试测量但不起作用。
this.refs.tabla.measure(this._getWidth);
_getWidth(a,f,width,h,x,z){
width = width + '';
this.setState({width});
console.log(width);
这是错误:index.js:20222 Uncaught TypeError: this.refs.tabla.measure 不是函数
最佳答案
如果您对该元素有一个 ref
,您可以执行 this.refs.myelem.clientWidth
(对于没有 CSS 或内联布局框的元素为零)或者可能更好 this.refs.myelem.getBoundingClientRect().width
不确定 measure
方法应该从哪里来。
记住 React 提供标准化的 DOM 实现会很有帮助,这意味着您通常可以像处理“标准”Js DOM 节点和事件一样处理 React 事件和 DOM 元素。 getBoundingClientRect 和 clientWidth 在标准 DOM 节点上也可用,与 React 无关。
关于javascript - 如何在 react 中动态获取宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37162949/
我是一名优秀的程序员,十分优秀!