Definitive way to trigger keypress events with jQuery

后端 未结 10 2323
不知归路
不知归路 2020-11-22 00:33

I\'ve read all the answers on to this questions and none of the solutions seem to work.

Also, I am getting the vibe that triggering keypress with special characters

10条回答
  •  被撕碎了的回忆
    2020-11-22 01:00

    If you're using jQuery UI too, you can do like this:

    var e = jQuery.Event("keypress");
    e.keyCode = $.ui.keyCode.ENTER;
    $("input").trigger(e);
    

提交回复
热议问题