我正在尝试构建WYSIWYG
,我有三个按钮:copy
,cut
和paste
。
我为每一个尝试了这个脚本,但它没有用。
这是我的剧本:
//Copy
document.getElementById('copy').addEventListener('click', function(){
document.execCommand('copy', false, null);
}, false);
//Cut
document.getElementById('cut').addEventListener('click', function(){
document.execCommand('cut', false, null);
}, false);
//Paste
document.getElementById('paste').addEventListener('click', function(){
document.execCommand('paste', false, null);
}, false);
在Google chrome
,Internet Explorer 11
,Safari
和Opera
中,没有人工作,我在控制台中没有得到任何内容。
在Mozilla Firefox
我收到此消息:
Error: Permission denied for <file://> to get property Clipboard.cutcopy
document.execCommand('cut', false, null);
copy
和paste
同样如此。
我该如何解决这个问题?