function copy(copyId){
console.log(copyId);
var url = document.getElementById(copyId).href;
var cInput = document.createElement('input');
cInput.value = url;
document.body.appendChild(cInput);
cInput.select(); // 选取文本框内容
document.execCommand("Copy"); // 执行浏览器复制命令
alert("复制成功!");
document.body.removeChild(cInput);
}