我正在写作,因为我在没有提交按钮的情况下通过文本框的值有问题,但从键盘管理事件。Enter目标是在我单击该键时启动该功能。我写了这段代码,但现在它不起作用:
<form method="GET">
<input type="textfield" id="testo_libero" onkeydown="javascript: if (event.Keycode==13) desc_ricerca(this.value);">
</form>
在 Javascript 文件中:
function desc_ricerca(valore){
console.log("valore"+valore);
}
谁能帮我?我试过了,但没有...
function desc_ricerca(valore){
var cat = $("#testo_libero").val();
console.log(cat);
}