`
复制的内容
<script>
function copy() {
var val = document.getElementById('copyId');
window.getSelection().selectAllChildren(val);
document.execCommand("Copy");
}
</script>`
2024-01-26 22:38:34
`
<script>
function copy() {
var val = document.getElementById('copyId');
window.getSelection().selectAllChildren(val);
document.execCommand("Copy");
}
</script>`