码迷,mamicode.com
首页 > 其他好文 > 详细

React设置宽度的坑

时间:2017-08-26 04:53:18      阅读:399      评论:0      收藏:0      [点我收藏+]

标签:ref   class   win   idt   pre   screen   logs   str   react   

React设置宽度的坑

  我们知道通过ref可以获取DOM元素,通过style属性可以给此DOM元素添加样式。

  但下面两行的赋值是无效的:

this.HomeRootDiv.style.width=window.screen.width
this.HomeRootDiv.style.height=window.screen.height

  因为style中的width、height是有单位的,必须加上px才是有效的赋值。所以要改成下面这样

this.HomeRootDiv.style.width=`${window.screen.width}px`
this.HomeRootDiv.style.height=`${window.screen.height}px`

 

React设置宽度的坑

标签:ref   class   win   idt   pre   screen   logs   str   react   

原文地址:http://www.cnblogs.com/tekkaman/p/7429775.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!