copy to clipboard - not working in FF,Chrome

前端 未结 6 2059
小蘑菇
小蘑菇 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:39

    See the documentation for clipboardData, specifically the section that reads:

    There are no standards that apply here.

    You are using proprietary Microsoft gubbins, so it shouldn't be expected to work on other browsers.

    See this question for cross-browser techniques to access the clipboard.

    There is a draft of a standard for accessing the clipboard but I'm not aware of any implementations of it in the wild (and canIuse doesn't know of any either).

提交回复
热议问题