如何通过js在kindeditor中获取内容

时间:2013-05-15 07:22:42

标签: php javascript mysql ajax

我正在使用kindeditor存储数据并在js中传递该值..它工作正常但在编辑时我没有让我的内容更新....

<script>

    var editor;
    KindEditor.ready(function(K) {      
        editor = K.create('textarea[name="eventContent"]', {
            allowFileManager : true,
            langType : 'en'
        });

        K('input[name=getHtml]').click(function(e) {
            alert(editor.html());
        });

        //here
        var eventContent = (editor.html());
    });
</script>

var eventContent = (editor.html());

0 个答案:

没有答案