Triggering Ctrl S or Ctrl P via a button

安稳与你 提交于 2019-12-01 05:13:51

问题


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.


回答1:


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())




回答2:


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.



来源:https://stackoverflow.com/questions/6808650/triggering-ctrl-s-or-ctrl-p-via-a-button

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!