如何在按钮单击中获取剑道编辑器文本的文本

时间:2013-12-18 10:14:37

标签: editor

我正在为我的项目使用Kendo UI编辑器(MVC 4应用程序)。

在按钮单击事件中,我需要在用户输入文本并单击预览按钮后在另一个div中显示编辑器文本。

我该怎么做?

1 个答案:

答案 0 :(得分:1)

试试这个:

function getClick(e) {

        try {             //the name of your editor
            var editor = $("#editor").data("kendoEditor");
            var editorContent = editor.value();
            alert(editorContent);
            //Do Your stuff here 

        }
        catch (e) { }
    }  

然后用按钮调用

 <button class="k-button" id="btnPreviewContent" onclick="getClick()">PreviewEditor Content</button>