$(document).ready(function () { $(‘body‘).css({‘height‘:$(window).height()})});//这行是解决输入框在输入信息弹出键盘后页面变形
$(function () {
//微信内置浏览器浏览H5页面弹出的键盘遮盖文本框的解决办法
window.addEventListener("resize", function () {
if (document.activeElement.tagName == "INPUT" || document.activeElement.tagName == "TEXTAREA") {
window.setTimeout(function () {
document.activeElement.scrollIntoViewIfNeeded();
}, 0);
}
})
})
原文地址:https://www.cnblogs.com/lzk318/p/9247910.html
时间: 2024-10-14 22:50:10