SOURCE

function copyE(){
const inputElement = document.querySelector('#input');
inputElement.select();
document.execCommand('copy');
}

function pasteE(){
const pasteText = document.querySelector('#output');
pasteText.focus();
document.execCommand('paste');   
}

function cutE(){
    
}



console 命令行工具 X clear

                    
>
console