onChange仅在元素失去焦点时调用

发布于 2024-11-06 14:07:43 字数 209 浏览 0 评论 0原文

我希望当您在文本字段中输入时,div 会发生变化(我已经有用于更改 div 的代码)。但是,只有在完成并单击文本字段外部后才会调用 onchange 事件。我希望在输入每个字母时调用它。

我的代码:

<input name="platetext" type="text" onchange="setValue(this)">

I want that as you type in the textfield the div changes (I have the code for changing the div already). However the onchange event is only called once you are finished and click outside the textfield. I want it to be called as each letter is typed.

My code:

<input name="platetext" type="text" onchange="setValue(this)">

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

云淡风轻 2024-11-13 14:07:43

我认为当输入失去焦点时会触发 onChange 。 onKeyUp 应该可以满足您的要求。

onChange is fired when the input looses focus I think. onKeyUp should do the trick for you.

一城柳絮吹成雪 2024-11-13 14:07:43

有一个“输入”事件,您可以将事件处理程序绑定到(我认为这是通过 HTML5 引入的)。

我在这里做了一个快速且非常肮脏的示例: http://jsfiddle.net/RdKZH/

这将是解决此问题的干净方法(因为 keyup 不适用于复制和粘贴),但您可能想测试它是否已经在您想要支持的所有浏览器中工作。

There is an 'input' Event you can bind your event Handlers to (I think this was introduced with HTML5).

I made a quick and very dirty example here: http://jsfiddle.net/RdKZH/

This would be the clean approach to this problem (as keyup does not work on copy&paste), but you might want to test if it already works in all browsers you want to support.

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