javascript - OnChange and OnKeyUp on control - Stack Overflow

I have an edit box which accepts an email address on my html page.At the moment, I have a javascript ca

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 0
Add a ment  | 

3 Answers 3

Reset to default 9

You 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.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743577742a4473812.html

相关推荐

  • javascript - OnChange and OnKeyUp on control - Stack Overflow

    I have an edit box which accepts an email address on my html page.At the moment, I have a javascript ca

    23小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信