工具栏安卓键盘中的错误出现在v1.framework7中

时间:2018-04-11 06:49:20

标签: android webview html-framework-7

当Android键盘出现时,工具栏和导航栏会覆盖屏幕。 其实我想当键盘出现然后工具栏隐藏,当键盘隐藏然后工具栏显示

请检查截图
https://prnt.sc/j3npos
https://prnt.sc/j3npwe

我想要 https://prnt.sc/j3ns4k

1 个答案:

答案 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")
        });
}

这项工作对我来说