我想禁用所有输入类型编号上的所有滚动事件。
我看到了一些例子来做到这一点,但所有的例子都只针对一个元素
input = document.getElementById("the_number_input")
input.addEventListener("mousewheel", function(event){ this.blur() })
或者用 Jquery
$('form').on('focus', 'input[type=number]', function (e) {
$(this).on('wheel.disableScroll', function (e) {
e.preventDefault()
})
})
$('form').on('blur', 'input[type=number]', function (e) {
$(this).off('wheel.disableScroll')
})
有香草 javascript 的解决方案吗?
料青山看我应如是
相关分类