Home  >  Article  >  Web Front-end  >  Implementation of jquery one-click copy to clipboard function

Implementation of jquery one-click copy to clipboard function

小云云
小云云Original
2017-12-27 11:53:052954browse

This article mainly brings you an example of jquery copying to the clipboard with one click. The editor thinks it’s pretty good, so I’ll share it with you now and give it as a reference. Let’s follow the editor to take a look, I hope it can help everyone.

There is a function in my project today, which is to copy a piece of text to the clipboard through a click event. I found some on the Internet and sorted it out for the convenience of friends who need it.


<a id="copy" data-text="123456">复制文本</a>
$(function(){
    var clipboard = new Clipboard(&#39;#copy&#39;,{ 

       text: function(trigger) { 

          alert("复制成功!");

          return trigger.getAttribute(&#39;data-text&#39;); 

       }

    });
});

Related recommendations:

How to use jquery to copy to the clipboard with one click

JavaScript code sharing for how to use ZeroClipboard to operate the clipboard

How to get html based on the specified clipboard?

The above is the detailed content of Implementation of jquery one-click copy to clipboard function. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn