this.rect = this.canvas.getBoundingClientRect()
console.log(this.rect)
this.show_qm_panel = false
如果dom的display是false的话,getBoundingClientRect是会返回0的
变通的方法是先让它显示,然后获取到 getBoundingClientRect 的值后随即隐藏
this.rect = this.canvas.getBoundingClientRect()
console.log(this.rect)
this.show_qm_panel = false
如果dom的display是false的话,getBoundingClientRect是会返回0的
变通的方法是先让它显示,然后获取到 getBoundingClientRect 的值后随即隐藏
本文标题:getBoundingClientRect 返回 0
本文链接:https://www.haomeiwen.com/subject/xcilvrtx.html
网友评论