asp.net 文本框 - 客户端 textChanged 事件不会触发
我希望我的文本框在其中的文本发生更改时触发 textChanged 客户端(JS)事件。
我读了很多关于它的帖子。他们中的大多数人都在谈论代码隐藏事件,而那些谈论客户端的人告诉添加 onchange 属性:
<asp:TextBox runat="server" ID="TextBox1" onchange="javascript: ontextchanged();"></asp:TextBox>
但只有当我失去对文本框的焦点时才会触发此事件。
有什么解决办法吗? 每次文本框中的文本发生更改时,如何触发 JS 函数?
i want my textbox to fire a textChanged client side (JS) event when a text is changed inside it.
i read many posts about it. most of them are talking about a code-behind event and the ones that talk about the client side tells to add attribute of onchange:
<asp:TextBox runat="server" ID="TextBox1" onchange="javascript: ontextchanged();"></asp:TextBox>
but this event only fires when i lose the focus on the textbox.
what is the solution to this ?
how can i fire a JS function each time a text is changed inside the textbox?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请改用
onkeyup
或onkeydown
。当您键入或单击文本框时,这将运行该函数。然后,您还可以检测事件的键码,如果您不希望该功能针对某些键运行,则可以阻止该功能。
Use
onkeyup
oronkeydown
instead.This will then run the function when you type or click on the textbox. You can also then detect the keycode of the event, and prevent the function if you dont want it to run for certain keys.
试试这个 http://www.zurb.com/playground/jquery-text -更改自定义事件
Try this http://www.zurb.com/playground/jquery-text-change-custom-event