codemirror只用于一行文本字段?

时间:2012-10-23 08:27:14

标签: javascript codemirror

我有一行文字字段。 (输入类型='文字')

我没有textarea。

此文本字段允许用户在简单的DSL中输入小字符串。 为了给你一个想法,他们看起来像这样:

  • 从米兰到伦敦
  • 从意大利(罗马,佛罗伦萨)到英国

我正在考虑用codemirror

替换这个文本字段

我的问题是:

  • 使用代码镜像一行textarea是一个好主意吗?
  • 有人这样做过吗?
  • 有没有其他方法可以使文本字段更“丰富多彩”?

谢谢,

2 个答案:

答案 0 :(得分:13)

嗯,有一种方法可以使用丰富的CodeMirror功能制作单行编辑器。 首先,您必须添加功能齐全的CodeMirror对象(使用textarea)。

假设您已获得var cm = CodeMirror(...)。 (使用value: "")。 然后做

cm.setSize(200, cm.defaultTextHeight() + 2 * 4);
// 200 is the preferable width of text field in pixels,
// 4 is default CM padding (which depends on the theme you're using)

// now disallow adding newlines in the following simple way
cm.on("beforeChange", function(instance, change) {
    var newtext = change.text.join("").replace(/\n/g, ""); // remove ALL \n !
    change.update(change.from, change.to, [newtext]);
    return true;
});

// and then hide ugly horizontal scrollbar
cm.on("change", function(instance, change) {
    $(".CodeMirror-hscrollbar").css('display', 'none');
    // (!) this code is using jQuery and the selector is quite imperfect if
    // you're using more than one CodeMirror on your page. you're free to
    // change it appealing to your page structure.
});

// the following line fixes a bug I've encountered in CodeMirror 3.1
$(".CodeMirror-scroll").css('overflow', 'hidden');
// jQuery again! be careful with selector or move this to .css file

这对我来说很好。

答案 1 :(得分:2)

当某人按下某个键时,您可以在该字段上运行正则表达式。

当事件发生时,你会对contentEditable元素的内容执行str.replace,这个元素大约有一行,如下所示:

var r = /from\s+(\w+)\s+to\s+(\w+)/gi
s.replace(r, 'from <em>$1</em> to <em class="to">$2</em>');

对于这种方法,您不需要代码编辑器,您只需使用这些类设置标记样式...

simples