点击按钮复制,移动端ios兼容

el: 需要复制的内容dom,应为input    if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {     const editable = el.contentEditable;     el.contentEditable = true;     el.readOnly = true;     const range = document.createRange();     range.selectNodeContents(el);     const sel = window.getSelection();     sel.removeAllRanges();     sel.addRange(range);     el.setSelectionRange(0, 50); // 这里setSelectionRange第二个参数必须为正数,负数不生效     el.contentEditable = editable;   } else {     const text = document.getElementById(id);     text.focus();     text.setSelectionRange(0, 99999); // 这里setSelectionRange第二个参数必须为正数,负数不生效   } document.execCommand('copy'); el.blur();

相关文章

当我们远离最新的 iOS 16 更新版本时,我们听到了困扰 Apple...
欧版/美版 特别说一下,美版选错了 可能会永久丧失4G,不过只...
一般在接外包的时候, 通常第三方需要安装你的app进行测...
前言为了让更多的人永远记住12月13日,各大厂都在这一天将应...