为动态加载的文件着色
我正在使用 JQuery 将文件加载到文本区域并使用 CodeMirror 对其进行着色,但似乎它们运行得不太好:我可以使用要加载的文件或文本区域(包含现有文本)来进行着色一个或另一个,但是当我第一次加载它然后对其着色时,我最终得到一个空白的文本区域。这是我的页面的相关代码:
$("#corpo").load("jquery-latest.min.js"); /* random js file */
var editor = CodeMirror.fromTextArea("corpo", {
parserfile: ["tokenizejavascript.js", "parsejavascript.js"],
path: "/codemirror/js/",
stylesheet: "/codemirror/css/jscolors.css"
});
谢谢!
I'm using JQuery to load a file into a textarea and CodeMirror to colorize it, but it seems that they don't play along well: I can get the file to load or the textarea (with existing text) to get colorized, using one or the other, but when I first load it and then colorize it, I end up with a blank textarea. Here is the relevant code of my page:
$("#corpo").load("jquery-latest.min.js"); /* random js file */
var editor = CodeMirror.fromTextArea("corpo", {
parserfile: ["tokenizejavascript.js", "parsejavascript.js"],
path: "/codemirror/js/",
stylesheet: "/codemirror/css/jscolors.css"
});
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您必须将着色放入回调中:
...否则 CodeMirror 在获取内容之前开始工作(jQuery 中的 ajax 请求异步执行)。
Probably you have to put the colorization into a callback:
... otherwise CodeMirror starts working before the content is fetched (an ajax request in jQuery performs asynchronously).