jsf 在表单重新渲染后焦点输入文本字段,值 onblur

发布于 2024-12-05 15:24:35 字数 121 浏览 1 评论 0原文

在模糊表单内的输入文本字段后,我使用新值重新渲染表单。

在这种情况下,该字段失去焦点,我希望我模糊的输入之后的输入能够聚焦。是否有渲染后事件,或者可以提供选择我想要关注的单元格的选项?

提前致谢。

After onbluring an input text field inside my form , I'm rerendering the form with the new values.

In this case the field loses it's focus, I want the input that was after the one I blured out from to be focused. is there an after render event, or somthing that will give the option to choose the cell i want to focus on?

Thank's In Advance.

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

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

发布评论

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

评论(1

肩上的翅膀 2024-12-12 15:24:35

我不确定这是否有效,但您可以尝试以下操作:

<h:form id="myForm">

   <h:inputText id="my1stInput" >
      <a4j:ajax event="blur" render="myForm" oncomplete="document.getElementById('myForm:my2ndInput').focus()" />
   </h:inputText>

   <h:inputText id="my2ndInput" />

</h:form>

I'm not sure this would work but you can try the following:

<h:form id="myForm">

   <h:inputText id="my1stInput" >
      <a4j:ajax event="blur" render="myForm" oncomplete="document.getElementById('myForm:my2ndInput').focus()" />
   </h:inputText>

   <h:inputText id="my2ndInput" />

</h:form>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文