ios input box loses focus, the position of the callback method

Micro-letter web developer, ios in input, after the textarea loses focus, not the page callback.

The following methods to resolve:

    $("input,textarea").on("blur", function() {
        const scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0;
        window.scrollTo(0, Math.max(scrollHeight - 1, 0));
    });

 

Guess you like

Origin www.cnblogs.com/yiruiheng/p/11738425.html