繁体   English   中英

TS2339:“HTMLDivElement”类型上不存在属性“宽度”

[英]TS2339: Property 'width' does not exist on type 'HTMLDivElement'

在此处输入图像描述

我应该怎么办

 this.container = document.getElementById(obj.id) as HTMLDivElement;   
 this.containerWidth =this.container.width;
 this.containerHeight = this.container.height

您可以使用offsetWidthoffsetWidthoffsetHeight

this.containerWidth =this.container.offsetWidth;
this.containerHeight = this.container.offsetHeight

您看到此错误是因为HTMLElement没有属性宽度。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM