ASP.NET 中的按键
是否可以在不选择屏幕上任何内容的情况下检测按键?我正在尝试制作一个在线版本的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是因为在 Web 应用程序中这是您能做的最好的事情。您只能拦截具有焦点的元素上的按键。
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.
您应该使用 JavaScript 库来拦截浏览器中的按键。
You should use a javascript library to intercept the keypress in a browser.
将焦点设置在隐藏的输入元素上并使用 JavaScript 捕获按键。
Set the focus on a hidden input element and catch the keypresses with javascript.