如何使用CodeMirror动态切换模式?

发布于 2024-11-09 17:45:26 字数 51 浏览 3 评论 0原文

如何使用CodeMirror动态切换模式?

我有默认设置,但需要切换它。

How to dynamically switch modes with CodeMirror?

I have the default set, but need to switch it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葬心 2024-11-16 17:45:26

像这样的东西会对你有帮助。

首先,设置CodeMirror:

this.editor = CodeMirror.fromTextArea(document.getElementById("textAreaCodeMirror"), {
    lineNumbers: true,
    matchBrackets: true,
    styleActiveLine: true,
    theme:"eclipse",
    mode:language
});

然后,更改模式

this.editor.setOption("mode", language);

Something like this would help you.

First, set CodeMirror:

this.editor = CodeMirror.fromTextArea(document.getElementById("textAreaCodeMirror"), {
    lineNumbers: true,
    matchBrackets: true,
    styleActiveLine: true,
    theme:"eclipse",
    mode:language
});

Then, to change the mode

this.editor.setOption("mode", language);
情深缘浅 2024-11-16 17:45:26

如果这是 CodeMirror 2 或 3,请使用 setOption("mode",)setOption, “模式”)。

对于 CodeMirror 1,请使用 setParser 方法

If this is CodeMirror 2 or 3, use setOption("mode", <new mode>) (docs for setOption, "mode").

For CodeMirror 1, use the setParser method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文