如何从 JavaScript 中计算 HTML 表格的渲染高度?

发布于 2024-08-31 01:18:53 字数 91 浏览 2 评论 0原文

调整窗口大小时,我需要知道表格有多大,以便我可以动态地很好地适应中间的所有其他内容。表格高度仅取决于动态加载的内容。如何在 JavaScript 中计算表格的渲染高度?

When the window is resized, I need to know how big the table is, so I can dynamically fit everything else nicely in-between. The table height is solely dependant on the contents, which are loaded dynamically. How do you calculate the rendered height of the table in JavaScript?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终止放荡 2024-09-07 01:18:53

您可以使用 element.offsetHeight 来实现此目的。

var table = document.getElementById("tableId");
alert(table.offsetHeight);

You can use element.offsetHeight for this.

var table = document.getElementById("tableId");
alert(table.offsetHeight);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文