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

vue 获取元素高度

时间:2019-08-02 11:14:26      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:tco   回调   off   put   computed   win   ons   完成   asc   

1、html
<div ref="getheight"></div> 

2、JavaScript // 获取高度值 (内容高+padding+边框) let height= this.$refs.getheight.offsetHeight; // 获取元素样式值 (存在单位) let height = window.getComputedStyle(this.$refs.getheight).height; //获取元素内联样式值(非内联样式无法获取) let height = this.$refs.getheight.style.height; // 注意:要在元素渲染出来才能获取元素的高度 实例: mounted(){ this.$nextTick(()=>{ // 页面渲染完成后的回调 console.log(this.$refs.getheight.offsetHeight) }) }

  

vue 获取元素高度

标签:tco   回调   off   put   computed   win   ons   完成   asc   

原文地址:https://www.cnblogs.com/lymconch/p/11286971.html

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