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