如何在Cloud9 Ace代码编辑器中禁用粘贴?

问题描述:

我为我的大学项目使用CloudA9代码编辑器。我如何禁用在编辑器中粘贴。如何在Cloud9 Ace代码编辑器中禁用粘贴?

可以使用

stop = function(e) { 
    e.stopPropagation(); e.preventDefault(); console.log(e) 
} 
document.querySelector(".ace_editor").addEventListener("paste", stop, true); 

editor.onPaste = function() { return ""; }