仅通过按 Enter 键附加 textchanged 事件
问:
如何使 asp:textbox 的 TextChanged
仅在按 Enter
后触发,而在失去焦点时不触发其他键?
Q:
How to make the TextChanged
for the asp:textbox fires only after pressing Enter
,not other keys or not when losing the focus?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果设置 TextChanged 事件,并设置 AutoPostback="false",那么它只会在表单回发后检查,而不会在失去焦点后自动检查。 TextChanged 事件将在按钮提交之前触发。
If you set the TextChanged event, and set AutoPostback="false", then it will only check after the form is posted back, not automatically after losing focus. The TextChanged event will fire before your Button Submit.