vue中通过ref获取元素宽高度的--数值
getheight(){let obj = this.$refs.schoollet h = window.getComputedStyle(obj).height;//通过这个方法,获取宽高return parseInt(h.substring(0,h.length-2))//截取字符串,并将数字字符串,转成number类型},
·
getheight(){
let obj = this.$refs.school
let h = window.getComputedStyle(obj).height; //通过这个方法,获取宽高
return parseInt(h.substring(0,h.length-2)) //截取字符串,并将数字字符串,转成number类型
},
更多推荐
已为社区贡献6条内容
所有评论(0)