admin管理员组文章数量:1341709
I have an edit box which accepts an email address on my html page.
At the moment, I have a javascript call 'onkeyup
' which verifies if the email address is OK.
And it works well while the user types.
However, if I start typing my address (We will use [email protected]
), and I start with:
me@
My autoplete offers me '[email protected]', as I have used it before.
When I select that from the autoplete drop down - 'onkeyup
' doesn't fire. Instead, 'onchange
' fires.
I need both to fire. As the suer types, I want to validate (onkeyup), but I need to also fire the javascript 'onchange'. I don't, however, think I should fire both events. Is there a way to handle both with a single event?
I have an edit box which accepts an email address on my html page.
At the moment, I have a javascript call 'onkeyup
' which verifies if the email address is OK.
And it works well while the user types.
However, if I start typing my address (We will use [email protected]
), and I start with:
me@
My autoplete offers me '[email protected]', as I have used it before.
When I select that from the autoplete drop down - 'onkeyup
' doesn't fire. Instead, 'onchange
' fires.
I need both to fire. As the suer types, I want to validate (onkeyup), but I need to also fire the javascript 'onchange'. I don't, however, think I should fire both events. Is there a way to handle both with a single event?
Share Improve this question asked Sep 21, 2014 at 3:08 CraigCraig 18.8k43 gold badges156 silver badges263 bronze badges 03 Answers
Reset to default 9You can use oninput
event to bine onkeyup and onchange events. This event fires on pasting (ctrl+v) too.
<input name="title" oninput="func()">
You aren't firing events--the browser is. You're merely listening for them and taking action when they occur.
Rather than having two event-driven functions in your HTML, do one function on either event using proper listeners:
$('#myInput').on('keyup change', function() {
// do validation
});
I would just disable autoplete autoplete="off"
for the input. Browsers react different to autoplete so unless you want to test the browser beforehand, it is best to just turn off the autoplete.
本文标签: javascriptOnChange and OnKeyUp on controlStack Overflow
版权声明:本文标题:javascript - OnChange and OnKeyUp on control - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743577741a2505287.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论