function copy(){
    var email = "[email protected]";
    email.select();
    document.execCommand("Copy");
};


上面的代码不会复制电子邮件地址。

最佳答案

检查代码段,这可能对您有帮助



function copyEmail(){
    var email = document.getElementById('email');
    email.select();
    document.execCommand('copy')
};

<input type="email" id="email"/>
<input type="button" value="copy"  onClick="copyEmail()"/>

关于javascript - 使用document.execCommand(“copy”)复制电子邮件地址,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54017263/

10-17 02:54