Rails 3.1 上的 CodeMirror?

发布于 2024-12-28 04:02:48 字数 395 浏览 2 评论 0原文

我正在使用 Rails 3.1,并且在将 codemirror 编辑器附加到表单文本区域时遇到问题。

//----- code (application.js)------//
$(document).ready(function() {
    $('#comment_body').each(function() {
         var editor = CodeMirror.fromTextArea(this, {
             lineNumbers : true,
             matchBrackets : true
         });
     })
})
//------end------//

问题是文本区域变得不可编辑。你能告诉我这个的使用方法吗?

I am using rails 3.1 and I am facing a problem with attaching codemirror editor to my form textarea.

//----- code (application.js)------//
$(document).ready(function() {
    $('#comment_body').each(function() {
         var editor = CodeMirror.fromTextArea(this, {
             lineNumbers : true,
             matchBrackets : true
         });
     })
})
//------end------//

The problem is that the textarea becomes uneditable. Can you tell me the way to use this?

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

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

发布评论

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

评论(1

厌味 2025-01-04 04:02:48

您必须在 application.js 中添加 codemirror 的脚本和 css 作为脚本,在 application.css 中添加样式表。

application.js 应该有这个:

//=require codemirror

你的 application.css 应该有:

/*
*= require codemirror
*/

You have to add the scripts and the css of codemirror in your application.js for the scripts and application.css for the stylesheets.

application.js should have this:

//=require codemirror

And your application.css should have:

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