1、监听原生软键盘的动作
cordova plugin add ionic-plugin-keyboard //监听原生软键盘的动作
2、在index.js添加相关事件
// 监听键盘隐藏
window.addEventListener('native.keyboardshow',function (e) {
document.documentElement.style.height = 'auto';
})
// 监听键盘隐藏
window.addEventListener('native.keyboardhide',function (e) {
document.documentElement.style.height = '100%';
})