解决微信web页面键盘收起不回弹,导致按钮失效

在文本框失去焦点时加入以下代码

 $('input,textarea').blur(function () {
        setTimeout(function(){
            window.scrollTo(0,document.documentElement.clientHeight);
        },100)
    });

猜你喜欢

转载自www.cnblogs.com/zhangmm96/p/11118854.html