使用原生 JS 复制文本兼容移动端 iOS & android

2019-05-25 17:50:56 浏览数 (1)

注意事项

使用 JS 实现复制功能并不是很难,但是有几个需要注意的地方。

首先文本只有选中才可以复制,所以简单的做法就是创建一个隐藏的 input,然后绑定需要复制的文本。

另外如果将 input 设置为 `type="hidden" 或者 display:none 则无法选中文本,也就无法复制,可以设置 position:absolute;left:-999px; 来隐藏文本域。

代码语言:javascript复制
const copyInput = document.querySelector('#copyInput');
copyInput.value = '需要复制的文本';
copyInput.select();
document.execCommand('Copy');    

或者动态创建 input

代码语言:javascript复制
function copy(str) {
    const input = document.createElement("input");
    input.readOnly = 'readonly';
    input.value = str;
    document.body.appendChild(input);
    input.select();
    input.setSelectionRange(0, input.value.length);
    document.execCommand('Copy');
    document.body.removeChild(input);
}

移动端禁止键盘弹出

在 iOS 中 input 聚焦的时候会弹起键盘,对于复制操作交互体验很差,可以用以下方式禁止键盘的弹起。

代码语言:javascript复制
<input type="text" readonly="readonly" />
代码语言:javascript复制
<input type="text" onfocus="this.blur()" />
代码语言:javascript复制
$("#box").focus(function(){
    document.activeElement.blur();
});

关于粘贴:除了 IE,现代化的浏览器暂时无法读取剪贴板里的内容。

0 人点赞