我搜索了很多没有找到任何方法将事件绑定到键盘上的混合cordova应用程序
我想在我的应用程序每次出现键盘时做点什么
答案 0 :(得分:1)
window.addEventListener('native.keyboardshow', keyboardShowHandler);
function keyboardShowHandler(e){
console.log('Keyboard height in px: ' + e.keyboardHeight);
}
编辑 - OP还需要在键盘显示
时滚动到应用程序的底部function keyboardShowHandler(e){
document.body.scrollTop = document.body.scrollHeight;
}