Solve the micro-channel web page put away the keyboard does not rebound, leading to failure of the button

Add the following code in the text box loses focus

 

 $('input,textarea').blur(function () {
        setTimeout(function(){
            window.scrollTo(0,document.documentElement.clientHeight);
        },100)
    });

 

Guess you like

Origin www.cnblogs.com/zhangmm96/p/11118854.html