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("复制失败"); } }
|