Home > Web Front-end > JS Tutorial > body text

Implementation of jquery one-click copy to clipboard function

小云云
Release: 2017-12-27 11:53:05
Original
2996 people have browsed it

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;); 

       }

    });
});
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!