ASP.NET 中的按键

发布于 2024-11-09 19:19:09 字数 90 浏览 3 评论 0原文

是否可以在不选择屏幕上任何内容的情况下检测按键?我正在尝试制作一个在线版本的Windows 计算器。到目前为止我的搜索没有结果;我能找到的只是如何检测文本框中的按键。

Is it possible to detect keypresses without selecting anything on screen? I'm trying to make an online version of the Window's calculator. My searches so far have been fruitless; all I can find is how to detect keypresses in textboxes.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

饮湿 2024-11-16 19:19:09

到目前为止我的搜索是
无果而终;我所能找到的就是如何
检测文本框中的按键

这是因为在 Web 应用程序中这是您能做的最好的事情。您只能拦截具有焦点的元素上的按键。

My searches so far have been
fruitless; all I can find is how to
detect keypresses in textboxes

That's because in a web application that's the best you could do. You can intercept key presses only on elements that have the focus.

转角预定愛 2024-11-16 19:19:09

您应该使用 JavaScript 库来拦截浏览器中的按键。

You should use a javascript library to intercept the keypress in a browser.

网名女生简单气质 2024-11-16 19:19:09

将焦点设置在隐藏的输入元素上并使用 JavaScript 捕获按键。

Set the focus on a hidden input element and catch the keypresses with javascript.

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