我正致力于使用Phonegap将网络应用转换为Android应用。当我按下键盘上的键时,按键事件不会触发。我注意到keydown事件被触发而不是按键,但keyCode和charCode始终为0.请帮忙。
我的代码是:
if (document.addEventListener){
console.log("****** document.addEventListener ******");
document.addEventListener("keydown",UI.keydown,false);
document.addEventListener("keypress",UI.keypress,false);
}
else if (document.attachEvent)
{
console.log("****** document.attachEvent ******");
document.attachEvent("onkeydown", UI.keydown);
document.attachEvent("onkeypress", UI.keypress);
}
else
{
console.log("****** document.onkeypress ******");
document.onkeydown= UI.keydown;
document.onkeypress= UI.keypress;
}
答案 0 :(得分:2)
我总是使用keyup
。这是一个例子:
document.addEventListener('keyup', getInput, false);
function getInput(e){
keyData = String.fromCharCode(e.which);
}