copy to clipboard - not working in FF,Chrome

前端 未结 6 2054
小蘑菇
小蘑菇 2021-02-04 13:17

I am using below mentioned javascript to copy the text to clipboard. Its working in IE, but not working in Firefox and Chrome.

Please advice me,What is wrong?

         


        
6条回答
  •  無奈伤痛
    2021-02-04 13:51

    The clipboard manipulation is not cross-browser. For cross-browser solution you need flash.

    Look at this library https://github.com/jonrohan/ZeroClipboard

    You can use ZeroClipboard like this:

    
    
    

    When you click on the button the text Copy me! will be put into the clipboard.

    For further instructions check the library's API https://github.com/jonrohan/ZeroClipboard/blob/master/docs/instructions.md

提交回复
热议问题