当Android键盘出现时,工具栏和导航栏会覆盖屏幕。 其实我想当键盘出现然后工具栏隐藏,当键盘隐藏然后工具栏显示
答案 0 :(得分:0)
我得到了我的解决方案
myApp.onPageInit('*', function (page) { $(document).on('focus', 'input, textarea', function(){ $(".toolbar,.overTripBottom").addClass("hide") //alert("yes") }); $(document).on('blur', 'input, textarea', function(){ $(".toolbar,.overTripBottom").removeClass("hide") //alert("yes on") }); }
这项工作对我来说