我正在为我的大学项目使用CloudA9代码编辑器。如何禁用“在编辑器中粘贴”。
答案 0 :(得分:2)
你可以使用
stop = function(e) {
e.stopPropagation(); e.preventDefault(); console.log(e)
}
document.querySelector(".ace_editor").addEventListener("paste", stop, true);
或
editor.onPaste = function() { return ""; }