如何禁用 Cloud9 Ace 代码编辑器中的粘贴?
How to disable paste in Cloud9 Ace Code Editor?
我正在为我的大学项目使用 CloudA9 代码编辑器。如何禁用编辑器中的粘贴。
你可以使用
stop = function(e) {
e.stopPropagation(); e.preventDefault(); console.log(e)
}
document.querySelector(".ace_editor").addEventListener("paste", stop, true);
或
editor.onPaste = function() { return ""; }
我正在为我的大学项目使用 CloudA9 代码编辑器。如何禁用编辑器中的粘贴。
你可以使用
stop = function(e) {
e.stopPropagation(); e.preventDefault(); console.log(e)
}
document.querySelector(".ace_editor").addEventListener("paste", stop, true);
或
editor.onPaste = function() { return ""; }