Codemirror 预览 - 不在 iframe 中?
我试图做与本例完全相同的事情,只是代码不应该在 iframe 中打印,而应该在 div 中打印。
http://codemirror.net/demo/preview.html
这不起作用...我需要不同的方法。
$("#codeMirrorTextarea").keyup(function () {
$("#div").html($(this).val());
});
希望您能帮忙!
i am trying to do the exact same as in this example, only, the code should not be printet in an iframe, but in a div.
http://codemirror.net/demo/preview.html
This does not work... i need a different approach.
$("#codeMirrorTextarea").keyup(function () {
$("#div").html($(this).val());
});
Hope you can help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用普通 JS:
使用 oninput 事件处理程序还可以添加对非键盘设备的支持 正如此处指出的
演示
编辑:
使用 CodeMirror 的代码:
演示
更新的演示也更新了代码。
editor.getValue() 已在您提供的示例链接中使用。
CodeMirror 的 API,用于使用 getValue() 和更多方法
Using plain vanilla JS:
Using the oninput event handler adds support to non-keyboard devices as well as pointed out here
Demo
Edit:
Code using CodeMirror:
Demo
Updated demo that updates code as well.
The editor.getValue() has been used in the example link you provided.
CodeMirror's API for usage of getValue() and more methods