//input 失去焦点让其留在当前页面
$("input").blur(function(){
$(this)[0].scrollIntoView(true);
})
//监听键盘收起事件
var clientHeight = document.documentElement.clientHeight || document.body.clientHeight;
$(window).on('resize', function (e) {
var nowClientHeight = document.documentElement.clientHeight || document.body.clientHeight;
if (clientHeight > nowClientHeight) {
//键盘弹出的事件处理
}else {
$("input").blur();
//键盘收起的事件处理
}
});