H5移动端页面,点击输入框时,会发现fixed固定在底部的按钮被输入法弹框顶起来了。
而且安卓手机才会出现这样的情况,苹果手机不会出现这样的情况。
解决办法:
//navigator.userAgent.indexOf用来判断浏览器类型
var isAndroid = navigator.userAgent.indexOf('Android') > -1 || navigator.userAgent.indexOf('Adr') > -1;
if (isAndroid){//如果是安卓手机的浏览器
var win_h = $(window).height();//关键代码
$("body").height(win_h);//关键代码
window.addEventListener('resize', function () {
// Document 对象的activeElement 属性返回文档中当前获得焦点的元素。
if (document.activeElement.tagName === 'INPUT' || document.activeElement.tagName === 'TEXTAREA') {
if($('.scoreSubmit').is(':visible')){
$('.scoreSubmit').hide();
}else{
$('.scoreSubmit').show();
}
}
});
}