修复iOS12 下微信浏览器收起键盘后的一个bug

jQuery(document).delegate('input, textarea', 'blur', function(){
  setTimeout(function(){
    jQuery('html').animate({height: '100.1vh'}, 100, function(){
      jQuery(this).animate({height: '100vh'}, 1)
    })
  },100)
})
原文地址:https://www.cnblogs.com/kewenxin/p/11119572.html