codemirror 可以按类查找文本区域吗?
一个好的开始
我问了这个问题“Codemirror - 在多个文本区域上使用? ”几年前就有了一个很好的答案。但是,它仍然需要 ID 作为参数。 ID 是唯一的。
按类而不是 ID 查找文本区域
当同一页面上有多个文本区域(有些包含 HTML,有些包含 CSS)时,最好添加一个类而不是 ID。
示例
<p>Some content</p>
<textarea class="my_codemirror_html">
</textarea>
<p>Some content</p>
<textarea class="my_codemirror_html">
</textarea>'
如果我可以使用 jQuery,那就没问题了。无论如何,我在页面上使用它。
更新 2012-02-21 - 差不多了
我在 jsFiddle。唯一缺少的是我无法让它在文本区域上工作。
A good start
I asked this question "Codemirror - Use on multiple textareas?" a few years ago with a good answer. However, it still takes an ID as parameter. IDs are unique.
Find textarea by class instead of ID
When having multiple textareas, some with HTML and some with CSS on the same page, it would be nice to add a class instead of an ID.
Example
<p>Some content</p>
<textarea class="my_codemirror_html">
</textarea>
<p>Some content</p>
<textarea class="my_codemirror_html">
</textarea>'
If I can use jQuery for it, it's fine. I use that anyway on the page.
Update 2012-02-21 - Almost there
I found this post on jsFiddle. The only thing missing is that I can't make it work on textareas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将是一个更简单的解决方案,复杂性较低。
This will be an easier solution with less complexity.
我通过使用 jQuery 添加 ID 到所有文本区域来解决这个问题。
I solved it by adding an ID with jQuery to all textareas.
所有 javascript 版本:
上面的代码将按类查找所有文本区域,并仅使用 javascript 而不是 jQuery 将它们转换为单独的代码镜像实例。
All javascript version:
The code above will find all textareas by class and convert them into individual codemirror instances using only javascript and not jQuery.