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

时间:2017-03-22 12:40:35

标签: ace-editor

我正在为我的大学项目使用CloudA9代码编辑器。如何禁用“在编辑器中粘贴”。

1 个答案:

答案 0 :(得分:2)

你可以使用

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

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