モバイル側のページキーボードがポップアップされた後、bodyの高さが低くなった背景画像が押し出される解決方法
1148 ワード
$(function(){
$('.userid').focus(function(){
a = $(window).height();
$('.con').css('height',a + 'px');
})
})
これで突き上げられない
参照先:https://blog.csdn.net/weixin_42301940/article/details/80524323