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

How to copy to clipboard with one click using jquery

一个新手
Release: 2017-09-29 09:56:13
Original
2003 people have browsed it


<p style="margin-top: 7px;">今天做项目有一个功能,通过点击事件复制一段文本到剪切板,在网上找了一些,整理了一下,方便需要的朋友使用。<br/><br/><a id="copy" data-text="123456">复制文本</a>$(function(){<br/>       var clipboard = new Clipboard(&#39;#copy&#39;,{  <br/><br/>              text: function(trigger) { <br/><br/>                   alert("复制成功!");<br/><br/>                   return trigger.getAttribute(&#39;data-text&#39;);  <br/><br/>              }<br/><br/>       });<br/>});</p>
Copy after login

The above is the detailed content of How to copy to clipboard with one click using jquery. 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!