The bottom input is always covered by a soft keyboard, has anyone encountered this situation?

sometimes normal and sometimes abnormal, use document.body.scrollTop = document.body.scrollHeight;; on the contrary, input will not be pushed up. Can you give me some advice? Thank you

when the keyboard pops up, there is a value in document.body.scrollHeight, so why is it at the bottom

?

/ / resolve the problem that the bottom input input box is blocked when the third-party soft keyboard is called

var bfscrolltop = document.body.scrollTop;//
$("input.inputframe").focus(function(){// 'input.inputframe' 
    interval = setInterval(function(){//
    document.body.scrollTop = document.body.scrollHeight;//
    },100)
}).blur(function(){//
    clearInterval(interval);//
    document.body.scrollTop = bfscrolltop;
});

[look at this] https://blog.csdn.net/github_.


https://github.com/ionic-team.
try this plugin; I hope it will help you

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b2c5be-2bb23.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b2c5be-2bb23.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?