Paste from clipboard

六月ゝ 毕业季﹏ 提交于 2019-12-07 06:10:36

问题


How can I paste from clipboard using jQuery ?


回答1:


I don't think you can do this using javascript. Since clipboard data is part of the operating system your javascript code ill not be able to access that.




回答2:


It may be possible in some browsers/environments using document.execCommand, but shouldn't be relied on and you're better off finding another solution.

For posterity:

document.execCommand('paste', false, null);



回答3:


There is a very good JS / Flash library for this:

Zero Clipboard

Its currently the only libaray which handles the latest flash plugin 10 as well!



来源:https://stackoverflow.com/questions/4517053/paste-from-clipboard

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