【BUG】导航条位置移动(下移)
发布于 6 年前 作者 guiyingzhao 7012 次浏览 最后一次编辑是 5 年前 来自 问答

<input maxlength=‘20’ confirm-type=‘send’  class=‘inputWid’ placeholder=‘这是输入框’  focus=’{{focus}}’ cursor-spacing=“50px;” wx:if="{{inputShow}}" />

.inputWid{

    position: fixed;

    z-index: 100;

    bottom: 0;

    width: 100%;

    height: 50px;

    border-top: 1px solid #ddd;

    border-bottom: 1px solid #ddd;

    background-color: #fff;

    padding:0px 10px;

    box-sizing: border-box;

}

默认情况:input固定定位在底部,不显示。

操作:点击评论图标,inputShow为true,focus为true,拉起键盘,input框在键盘的上方,以供显示输入的文字

现象:拉起键盘后,导航条跑下来了。(暂时发现ios系统)

2 回复

我也是这种情况 怎么解决呢

回到顶部