js解决手机键盘影响定位的问题

// 滑动其他地方隐藏软键盘
document.body.addEventListener('touchend', function(evt) {
document.activeElement.blur();
});
// 解决键盘影响定位的问题
// $(document).ready(function(){
// var h=$(window).height();
// $(window).resize(function() {
// if($(window).height()<h){
// $('.mui-poppicker').hide();
// }
// if($(window).height()>=h){
// $('.mui-poppicker').show();
// }
// });
// });

// $('.mui-poppicker')为定位的div框!