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.
当用户在另一个输入中键入一个键时,我正在尝试呈现一个输入。当用户失去第一个输入的焦点时我可以这样做,但在他打字时却不行。有人知道怎么做吗?
event是的,您可以通过在以下属性中提供指定事件<f:ajax>:
event
<f:ajax>
<h:inputText ... > <f:ajax render="input2" event="keydown" /> </h:inputText> <h:inputText id="input2" ... />
keydown它允许在事件而不是标准事件上触发 ajax 调用change并更新其他文本输入。
keydown
change