asp.net 文本框 - 客户端 textChanged 事件不会触发

发布于 2024-12-17 02:25:05 字数 331 浏览 1 评论 0原文

我希望我的文本框在其中的文本发生更改时触发 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谁的新欢旧爱 2024-12-24 02:25:05

请改用 onkeyuponkeydown

当您键入或单击文本框时,这将运行该函数。然后,您还可以检测事件的键码,如果您不希望该功能针对某些键运行,则可以阻止该功能。

Use onkeyup or onkeydown 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文