Rails 3.1 上的 CodeMirror?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在 application.js 中添加 codemirror 的脚本和 css 作为脚本,在 application.css 中添加样式表。
application.js 应该有这个:
你的 application.css 应该有:
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:
And your application.css should have: