只有当用户按下键时,我才想在 backingbean 上调用函数enter
。但它不起作用。在 Chrome 的控制台上,它总是返回:Uncaught TypeError: object is not a function
每次我按下任何按钮。代码有什么问题?谢谢。
<p:inputText id="txtValue" value="#{cc.attrs.value}" onkeyup="onkeypress()">
</p:inputText>
<script type="text/javascript">
function onkeypress() {
if(event.keyCode==13) {
alert("true");
} else {
alert("false");
}
}
</script>
<p:remoteCommand name="rc" actionListener="#{cc.onKeyPress}" out="count" />