SOURCE

function copy(text) {
	var copy = function (e) {
		e.preventDefault();
		e.clipboardData.setData('text/plain', text); // 调用window自带的剪贴板
	};
	document.addEventListener('copy', copy);
	document.execCommand('Copy');
}
console 命令行工具 X clear

                    
>
console