解决微信web页面键盘收起不回弹,导致按钮失效
在文本框失去焦点时加入以下代码
$('input,textarea').blur(function () { setTimeout(function(){ window.scrollTo(0,document.documentElement.clientHeight); },100) });
在文本框失去焦点时加入以下代码
$('input,textarea').blur(function () { setTimeout(function(){ window.scrollTo(0,document.documentElement.clientHeight); },100) });