话不多说,请看代码:
//防止键盘把当前输入框给挡住 $$('input[type="text"],textarea').on('click', function () { var target = this; setTimeout(function(){ target.scrollIntoViewIfNeeded(); },100); });
部分安卓机型适用。
if(/Android [4-6]/.test(navigator.appVersion)) { window.addEventListener("resize", function() { if(document.activeElement.tagName=="INPUT" || document.activeElement.tagName=="TEXTAREA") { window.setTimeout(function() { document.activeElement.scrollIntoViewIfNeeded(); },0); } }) }
相关推荐:
虚拟键盘,移动web开发的痛_html/css_WEB-ITnose
打造个性化的功能强大的Jquery虚拟键盘(VirtualKeyboard)_jquery
jquery实现页面虚拟键盘特效_jquery
以上就是HTML5 虚拟键盘出现挡住输入框怎么办的详细内容,
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)