监控类型=数量?
我正在使用 html5 输入 type="number"
。我想监视此输入的更改,但是:
- 因为在支持它的浏览器中它会获得旋转控件我不能只监视
.keyup
, - 因为我不想等待它失去焦点我不能只监视
.change
。
我如何监控它以便捕获其值发生更改的所有情况?
I am using the html5 input type="number"
. I want to monitor this input for change, but:
- because in browsers that support it It gets spin controls I can't just monitor
.keyup
, - because I don't want to wait for it to lose focus I can't just monitor
.change
.
How can I monitor it so I catch all cases where it's value is changed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在查看了本网站上的一些问题并使用 mousewheel 插件之后,我得到了
所以你需要监视它的
After looking at some of the question's on this site and using the mousewheel plugin I have got
So you need to monitor it for
请参阅:HTML5 数字旋转框控件未触发更改事件?
您可以同时使用
oninput
和onkeydown
来实现兼容性。See: HTML5 number spinbox controls not triggering a change event?
You might use both
oninput
andonkeydown
for compatibility.