监控类型=数量?

发布于 2024-11-05 02:49:42 字数 212 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

奈何桥上唱咆哮 2024-11-12 02:49:42

在查看了本网站上的一些问题并使用 mousewheel 插件之后,我得到了

$('#spinbox').bind('click change keyup mousewheel', function() {
  //10 ms timeout is for mousewheel otherwise you get the previous value
  var box = this;
  setTimeout(function() {console.log($(box).val());}, 10);
});

所以你需要监视它的

  • 单击:单击控件
  • 更改:后备
  • 键盘:用于输入值
  • 鼠标滚轮:嗯...我想知道?

After looking at some of the question's on this site and using the mousewheel plugin I have got

$('#spinbox').bind('click change keyup mousewheel', function() {
  //10 ms timeout is for mousewheel otherwise you get the previous value
  var box = this;
  setTimeout(function() {console.log($(box).val());}, 10);
});

So you need to monitor it for

  • Click: clicking on the controls
  • change: fallback
  • keyup: for entering a value
  • mousewheel: hmmm... I wonder?
友欢 2024-11-12 02:49:42

请参阅:HTML5 数字旋转框控件未触发更改事件?

您可以同时使用 oninputonkeydown 来实现兼容性。

See: HTML5 number spinbox controls not triggering a change event?

You might use both oninput and onkeydown for compatibility.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文