今天做项目有一个功能,通过点击事件复制一段文本到剪切板,在网上找了一些,整理了一下,方便需要的朋友使用。
复制文本$(function(){
var clipboard = new Clipboard('#copy',{
text: function(trigger) {
alert("复制成功!");
return trigger.getAttribute('data-text');
}
});
});
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!