软件盘弹出背景图上移

$(function(){
$(“input”).each(function(){
$(this).on(“focus”,function(){
// alert(1)
var winHeight = api.winHeight;
$(“body”).css(“height”,winHeight+“px”);
$(".gesture_btn.gest_login").hide();
});
$(this).on(“blur”,function(){
// alert(2)
$(“body”).css(“height”,“100%”);
$(".gesture_btn.gest_login").show();
});
})
})

猜你喜欢

转载自blog.csdn.net/qq_38773775/article/details/85999751