我想仅在用户按下enter
键时才在backbean上调用函数。但它不起作用。在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" />
答案 0 :(得分:1)
在onkeypress
函数中添加参数可以解决您的问题
<script type="text/javascript">
function onkeypress(event) {
if(event.keyCode==13) {
alert("true");
} else {
alert("false");
}
}
</script>