Disable scrolling on `<input type=number>`

后端 未结 15 1819
小蘑菇
小蘑菇 2020-12-02 07:13

Is it possible to disable the scroll wheel changing the number in an input number field? I\'ve messed with webkit-specific CSS to remove the spinner but I\'d like to get rid

15条回答
  •  醉话见心
    2020-12-02 07:58

    For anyone working with React and looking for solution. I’ve found out that easiest way is to use onWheelCapture prop in Input component like this:

    onWheelCapture={e => { e.target.blur() }}

提交回复
热议问题