<input type="text" value="" class="btninput"/>
$('.btninput').bind('focus', function() {
if ($(this).offset().top > document.body.scrollHeight / 2) {
setTimeout(function () {
window.scrollTo(0,document.body.scrollHeight);
}, 500);
}
});
$('.btninput').focus(function(e){
var u = navigator.userAgent;
var Android = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1;
if(Android){
$('body').height( $('body').height()+300)
$('body').scrollTop(300)
}
})
$('.btninput').blur(function(e){
var u = navigator.userAgent;
var Android = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1;
if(Android){
$('body').height( $('body').height()-300)
$('body').scrollTop(0)
}
})
转载请注明原文地址:https://ipadbbs.8miu.com/read-27577.html