点击按钮,复制传入id
复制javascript/********点击按钮,复制传入id的内容到粘贴板 start********/
function copycode(id) {
const range = document.createRange();
range.selectNode(document.getElementById(id));
const selection = window.getSelection();
if(selection.rangeCount > 0) selection.removeAllRanges();
selection.addRange(range);
document.execCommand('copy');
layer.msg("复制成功!");
}
/********点击按钮,复制传入id的内容到粘贴板 start********/
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
效果图