在这里,我无法从Mozilla Firefox中的剪贴板复制数据。
{
var cTxt = "abc"; // here it is dynamic data - i have given abc as static here
var contInp = document.createElement("input");
contInp.setAttribute("value", cTxt);
document.body.appendChild(contInp);
contInp.focus();
contInp.select();
document.execCommand("copy");
document.body.removeChild(contInp);
}
有人可以帮我解决这个问题吗?在Chrome中运行正常。