这是我的代码:
function createTextArea() {
var t = document.createElement("textArea");
textArea = document.body.appendChild(t);
return textArea;
}
function copy(str) {
var textArea = createTextArea();
textArea.value = str;
textArea.select();
document.execCommand("Copy");
}
copy("hello")
现在,当我尝试粘贴时,我放入textarea的文本没有出现。有谁知道我做错了什么?
答案 0 :(得分:0)
根据文献记载,你有一个错字。从Rich-Text Editing in Mozilla关于执行命令
copy
将当前选择复制到剪贴板。 must be enabled
首选项文件中的剪贴板功能user.js
。
看到这两个帖子: How do you configure Firefox to allow Javascript to intercept a value pasted from the clipboard?和 Copy to Clipboard for all Browsers using javascript
所以,如果你能做到这一点似乎很值得怀疑。