测试手机浏览器输入框遮挡问题

pull/23/head
taoshihan1991 3 years ago
parent 66622fc786
commit baba0ad38b

@ -313,6 +313,17 @@ new Vue({
}
return false;
});
var windheight = $(window).height();
$(window).resize(function(){
var docheight = $(window).height(); /*唤起键盘时当前窗口高度*/
console.log(docheight,windheight);
if(docheight < windheight){ /*当唤起键盘高度小于未唤起键盘高度时执行*/
$(".chatBoxSend").css("position","static");
}else{
$(".chatBoxSend").css("position","fixed");
}
});
});
},
//心跳

Loading…
Cancel
Save