$("#id").dblclick(function(e){
let text = e.target;
text = text.innerText;
let textarea = document.createElement('textarea');
textarea.id = "copyTextarea";
textarea.style.width = 0;
textarea.style.height = 0;
document.body.appendChild(textarea);
textarea = document.getElementById('copyTextarea');
textarea.innerHTML = text;
textarea.select();
document.execCommand('copy');
document.body.removeChild(textarea);
layer.open({
title:"温馨提示",
icon:1,
content:"已复制",
});
});