Mootools:获取按键事件上的文本框文本
如何获取 keydown 事件处理程序中文本框的当前文本。调用 element.get('value') 返回事件发生之前文本框中的文本。如何获取事件处理程序中的当前值?
How can I get the current text of a textbox in the keydown event handler. Calling element.get('value') returns the text that was in the textbox before the event happened. How can I get the current value in the event handler?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用
keyup
事件即可:)Just use
keyup
event instead :)