如何在codemirror中禁用鼠标使用。
我希望它的行为类似于vim编辑器,用户无法使用鼠标移动到任何地方。
提前致谢。
答案 0 :(得分:1)
如何在编辑器容器上使用pointer-events: none;
?
.CodeMirror {
pointer-events: none;
}
pointer-events
reference在 MDN 答案 1 :(得分:1)
您可以为鼠标事件注册处理程序(主要是mousedown
),只需注册.preventDefault()
它们,以防止CodeMirror进一步处理它们。