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. This article mainly brings you an example of jquery copying to the clipboard with one click. The editor thinks it is quite good, so I will share it with you now and give it as a reference for everyone. Let’s follow the editor to take a look, I hope it can help everyone.
<a id="copy" data-text="123456">复制文本</a> $(function(){ var clipboard = new Clipboard('#copy',{ text: function(trigger) { alert("复制成功!"); return trigger.getAttribute('data-text'); } }); });
Related recommendations:
How to use jquery to copy to the clipboard with one click
js instance method of copying to the clipboard_javascript skills
JS copy specified content to the clipboard sample code_javascript skills
The above is the detailed content of jquery implements one-click code sharing to copy to clipboard. For more information, please follow other related articles on the PHP Chinese website!