作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在 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/
我是一名优秀的程序员,十分优秀!