首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >宽度:类型“”HTMLDivElement“”不存在属性“”TS2339“”

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

Stack Overflow用户
提问于 2021-05-07 18:00:28
回答 1查看 235关注 0票数 0

我该怎么办呢

代码语言:javascript
复制
 this.container = document.getElementById(obj.id) as HTMLDivElement;   
 this.containerWidth =this.container.width;
 this.containerHeight = this.container.height
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2021-05-07 18:12:44

您可以使用offsetWidthoffsetWidthoffsetHeight

代码语言:javascript
复制
this.containerWidth =this.container.offsetWidth;
this.containerHeight = this.container.offsetHeight

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

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/67432787

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档