Spark 按钮 - 为什么按 Enter 键不触发单击事件?
我有点困惑为什么这不是默认行为?
那么,如何检测按钮上按下的 Enter 键并触发单击事件处理程序? (例如,在 TextInput 字段上有一个“enter”事件)
谢谢
I'm a little confused as to why this isn't the default behaviour?
So, how do I detect the enter key being pressed on my button and fire the click event handler? (For example on a TextInput field there is an 'enter' event)
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑:忽略我之前发布的所有内容。
您可以使用 Spark 按钮上的 keyDown 事件并使用 KeyboardEvent 创建事件处理程序。
EDIT: Ignore everything I posted before.
You can use the keyDown event on the spark button and create an event handler using KeyboardEvent.
编辑:回滚到原始帖子,只有在选择按钮时才会触发事件。
当用户将焦点放在按钮上时,会触发 Enter 事件,与键盘 Enter 键无关。如果我没记错的话,Flash 中激活按钮的默认键是空格键。您可以通过执行以下操作来使用 Enter:
EDIT : rollbacked to original post, event will only be fired if button is selected anyways
The enter event is fired when users sets focus on the button and has nothing to do with the keyboard enter key. If I'm not mistaken, the default key for activating a button in Flash is spacebar. You could use enter by doing something like this :