Codemirror 预览 - 不在 iframe 中?

发布于 2024-12-12 00:11:34 字数 326 浏览 0 评论 0原文

我试图做与本例完全相同的事情,只是代码不应该在 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 技术交流群。

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

发布评论

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

评论(1

感情废物 2024-12-19 00:11:34

使用普通 JS:

t = document.getElementById('code');
t.addEventListener('input',function(){
    document.getElementById('result').innerHTML = t.value;
});

使用 oninput 事件处理程序还可以添加对非键盘设备的支持 正如此处指出的

演示

编辑:
使用 CodeMirror 的代码:

$(function () {
    $("textarea").each(function (i) {
        editor = CodeMirror.fromTextArea(this, {
             lineNumbers: true
        });
    });
});

document.getElementById('result').innerHTML=editor.getValue();

演示
更新的演示也更新了代码。

editor.getValue() 已在您提供的示例链接中使用。

CodeMirror 的 API,用于使用 getValue() 和更多方法

Using plain vanilla JS:

t = document.getElementById('code');
t.addEventListener('input',function(){
    document.getElementById('result').innerHTML = t.value;
});

Using the oninput event handler adds support to non-keyboard devices as well as pointed out here

Demo

Edit:
Code using CodeMirror:

$(function () {
    $("textarea").each(function (i) {
        editor = CodeMirror.fromTextArea(this, {
             lineNumbers: true
        });
    });
});

document.getElementById('result').innerHTML=editor.getValue();

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

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