aux.select(); // 兼容iOS, ios 不支持 input.select aux.setSelectionRange(0, aux.value.length); // 获得选中的内容 var content = window.getSelection().toString(); // 执行复制命令 // console.log(document.execCommand('copy')); document.execCommand('copy'); // 将 input 元素移除 document....