检查 GWT 中的 KeyUpEvent 是否为空格
我从教程中注意到,通常通过将 getNativeKeyCode 与 KeyCodes 进行比较来检查 KeyUpEvent 事件。但 KeyCodes 只有特殊键的常量,没有字符。有没有办法绕过对空格键的值进行硬编码(看起来是“32”)?
I notice from the tutorial that normally KeyUpEvent event is checked by comparing getNativeKeyCode with KeyCodes. But KeyCodes only has constants for special keys and none of the characters. Is there a way to get around hard-coding the value for spacebar (which appears to be "32")?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我编写此代码来通过检查空格键(32)来关闭弹出面板,它对我有用
KeyUpEvent 也有 getNativeEvent();
你可以用同样的方式检查
I write this code to close the popup panel with checking spacebar (32) and it works for me
KeyUpEvent also has getNativeEvent();
that you can check with the same way
您可以仅使用字符作为空格进行比较,如下所示:
You can just use the char for space to compare against, like this: