# JavaScript 代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

function copy() {
var input = document.createElement('input');
input.setAttribute('readonly', 'readonly'); // 防止手机上弹出软键盘
input.setAttribute('value', $("#id").text()); //赋值
document.body.appendChild(input);
input.select();//选中
var res = document.execCommand('copy'); //拷贝
document.body.removeChild(input);
if (res){
console.log("复制成功");
}else {
console.log("复制失败");
}
}