我该怎么办呢
this.container = document.getElementById(obj.id) as HTMLDivElement;
this.containerWidth =this.container.width;
this.containerHeight = this.container.height
发布于 2021-05-07 18:12:44
您可以使用offsetWidth
:offsetWidth和offsetHeight
this.containerWidth =this.container.offsetWidth;
this.containerHeight = this.container.offsetHeight
您看到这个错误是因为HTMLElement没有属性宽度。
https://stackoverflow.com/questions/67432787
复制相似问题