gpt4 book ai didi

javascript - 如何在codemirror编辑器中设置不同的尺寸?

转载 作者:行者123 更新时间:2023-11-28 07:36:05 25 4
gpt4 key购买 nike

我需要在 php 页面中使用不同尺寸的每个 codemirror 编辑器。

如下所示,我们可以创建一个 codemirror 编辑器的实例,但它应该具有相同的尺寸。有没有办法创建不同的尺寸?

function editor(id)
{
CodeMirror.fromTextArea(id, {
height: "350px",
parserfile: "parsexml.js",
stylesheet: "css/xmlcolors.css",
path: "js/",
continuousScanning: 500,
lineNumbers: true
});
}
editor('code1');
editor('code2');

最佳答案

是的,在编辑器功能的附加参数中添加尺寸。

例如:

function editor(id, h)
{
CodeMirror.fromTextArea(id, {
height: h,
parserfile: "parsexml.js",
stylesheet: "css/xmlcolors.css",
path: "js/",
continuousScanning: 500,
lineNumbers: true
});
}
editor('code1', '350px');
editor('code2', '450px');

关于javascript - 如何在codemirror编辑器中设置不同的尺寸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28559584/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com