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

Vue获取DOM元素样式 && 样式更改

时间:2017-11-27 15:24:34      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:efs   style   vue   splay   not   display   draw   default   高度   

在 vue 中用 document 获取 dom 节点进行节点样式更改的时候有可能会出现 ‘style‘ is not definde的错误,这时候可以在 mounted 里用 $refs 来获取样式,并进行更改:

<template>
  <div style="display: block;" ref="abc">
    <!-- ... -->
  </div>
</template>
<script>
  export default {
    mounted () {
      console.log(this.$refs.abc.style.cssText)
    }
  }
</script>

结果是 display: block;
如果我们给一个div设定全屏背景图,就需要获取屏幕高度进行赋值:
<template>
  <div ref="nana">
    <!-- ... -->
  </div>
</template>

<script>
export default {
  mounted () {
   let w = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
   let h = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;

    this.$refs.nana.style.height = h +‘px‘;

  }

}

</script>

 备注:有必要时需要在updated方法中设置

    updated () {
      let height = this.$refs.luckDraw.offsetHeight;
      this.$refs.luckDrawContainer.style.height= height+‘px‘;
    },

 

Vue获取DOM元素样式 && 样式更改

标签:efs   style   vue   splay   not   display   draw   default   高度   

原文地址:http://www.cnblogs.com/sophie_wang/p/7903905.html

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