做"粘贴"使用jQuery单击context.js菜单时的命令

时间:2015-10-31 16:52:45

标签: jquery

嗯,我已经创建了一个带有自己的上下文菜单的页面,现在我正在实现一个文本编辑器,但我无法编写"粘贴"按钮,你有一个如何强制粘贴"的线索吗?会发生什么事?

enter image description here

context.attach('#app', [
            {text: 'Refresh', action: function(e){ location.reload(); }},
            {divider: true},
            {text: 'Copy', action: function(e){ document.execCommand('copy', false, null); }},
            {text: 'Cut', action: function(e){ document.execCommand('cut'); }},
            {text: 'Paste', action: function(e){ Event(paste); }},
        ]);

0 个答案:

没有答案