移动端键盘遮挡输入框解决方案

function docmentScollResize() {
    setTimeout(function () {
        var inputTextBox = document.getElementById('talk-bar');
        inputTextBox.scrollIntoView(true);
    },100)
}

当鼠标获取焦点后执行

猜你喜欢

转载自blog.csdn.net/bule_chen/article/details/68486082