Triggering Ctrl S or Ctrl P via a button

2019-02-18 02:54发布

Ok now I am aware that you can listen to keypresses (keydowns keyups etc...) but I would like to TRIGGER a keypress. Like as if the user presses CTRL+S to save.

Short question is, is it possible to use Jquery to trigger 2 key presses at the same time? I have been trying to look this up but all the stuff I found was talking about capturing key presses and not triggering them especially 2 key presses at the same time.

Any ideas how this can be accomplished? If you could lead me to the right track it would be much appreciated.

2条回答
别忘想泡老子
2楼-- · 2019-02-18 03:15

I don't know if you can trigger the key presses but perhaps if you explain what you are specifically trying to achieve you might be able to find a solution?

For example, if you want to trigger ctrl-p to bring up the print dialog you can do this using window.print();

If you want to trigger actions in your own code then you can just call the code directly rather than triggering the key press.

I don't think there is any way to trigger a file | save as (ctrl-s) by using JavaScript though.

查看更多
来,给爷笑一个
3楼-- · 2019-02-18 03:23

If you want to trigger your own handler code, you should just put that code in a separate function and call the function normally.

If you want to trigger the browser's default functionality, you should give up; that is impossible for security reasons. (Although you may be interested in window.print())

查看更多
登录 后发表回答