Copy to clipboard without Flash

后端 未结 8 920
情深已故
情深已故 2020-11-28 05:28

I found many solutions for copying to the clipboard, but they all either with flash, or for websites side. I\'m looking for method copy to clipboard automatically, without f

8条回答
  •  长情又很酷
    2020-11-28 06:15

    There is not way around, you have to use flash. There is a JQuery plugin called jquery.copy that provided cross browser copy and paste by using a flash (swf) file. This is similar to how the syntax highlighter on my blog works.

    Once you reference the jquery.copy.js file all you need to do to push data into the clipboard is run the following:

    $.copy("some text to copy");
    

    Nice and easy ;)

提交回复
热议问题