disable scrolling on input focus in javascript

后端 未结 3 2151
心在旅途
心在旅途 2020-12-21 05:22

I was wondering if it was possible to stop the page from scrolling using javascript when a user type or clicks on a

3条回答
  •  心在旅途
    2020-12-21 05:50

    So I figured out how to accomplish this, and I will leave this as a record for anyone else who needs to solve this problem. (NOTE : this solution has only been tested on safari and Firefox)

    for:

    
    

    the function

    document.getElementById('text').onkeydown = new function(event){return false}
    

    Will not cause the window to shift the scroll so that a user can see the input field when he types into the field. If like me you want this to happen for some letters but not for others simply edit the contents of the onkeydown function so that it returns false for certain keycodes and true for others.

提交回复
热议问题