本文介绍了当我按下回车键或回车键时,h:inputText可以在托管bean中调用方法吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
所以我有一个inputText
,它的值与myBean.text
挂钩,我希望如果我单击Enter/return键,inputText将在myBean
中调用一个方法来执行某些操作.有人可以帮我吗?
So I have an inputText
that has its value hook to myBean.text
, I want that if I click enter/return key, the inputText will invoke a method inside myBean
to do something. Can any one help me?
推荐答案
根据您的问题历史记录,我知道您正在使用JSF 2.0,因此这是针对JSF 2.0的答案:使用<f:ajax>
侦听change
事件,并在按下Enter键(键码13)时使用keypress
事件来调用它.
As per your question history, I know that you're using JSF 2.0, so here's a JSF 2.0 targeted answer: use <f:ajax>
which listens on a change
event and use keypress
event to invoke it when the enter key is pressed (keycode 13).
<h:inputText value="#{bean.text1}"
onkeypress="if (event.keyCode == 13) { onchange(); return false; }">
<f:ajax event="change" listener="#{bean.listener}" />
</h:inputText>
#{bean.listener}
应该指向类似的方法
public void listener(AjaxBehaviorEvent event) {
// ...
}
这篇关于当我按下回车键或回车键时,h:inputText可以在托管bean中调用方法吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!