Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 Web 应用程序中使用 Primefaces,想知道是否有办法在我的xhtml.
xhtml
在我的示例中,我生成了一个(来自数据库)<p:tieredMenu>并且需要知道该组件的高度来布局其他组件。我已经查看了FacesContext但没有发现任何与我的问题相关的内容。
<p:tieredMenu>
FacesContext
也许有人可以给我一个提示如何找到这些设置。
高度取决于浏览器如何呈现它。
您可以在 JavaScript 中检查它
$('#myElement').height()
另请参阅:CSS / JavaScript - 如何获得元素的渲染高度?