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.
我有一个 JSF 输入文本组件,它的 id 为search. 在生成的 HTML 输出中,它看起来像这样j_idt17:search,但数字17会不时变化。如何让它保持一致?
search
j_idt17:search
17
给生成具有id="j_idt17"固定 ID 的 HTML 元素的 JSF 组件。在这种特殊情况下,它很可能<form>是由 JSF<h:form>组件生成的 HTML 输入元素的父元素。
id="j_idt17"
<form>
<h:form>
所以,这应该这样做:
<h:form id="form">
这样生成的 HTML<input>元素的 ID 将变为form:search.
<input>
form:search