获取tinyMCE的内容?

时间:2012-12-05 15:21:34

标签: javascript tinymce

我的文字区域的ID为“文章”。

以下是我的js:

tinyMCE.init({
        theme : "advanced",
        mode : "textareas",
        plugins : "fullpage",
        theme_advanced_buttons3_add : "fullpage"
    });

获取编辑器的内容:

var content = tinyMCE.get('article').getContent();
    alert(content);

但它似乎不起作用,任何我出错的想法?​​

2 个答案:

答案 0 :(得分:4)

tinyMCE.activeEditor.getContent()

答案 1 :(得分:2)

尝试遵循此fiddle它可以帮助您搞清楚......

tinyMCE.init({
    theme : "advanced",
    mode : "textareas",
    plugins : "fullpage",
    theme_advanced_buttons3_add : "fullpage"
});

获取内容的功能

function get_content() {
var content = tinyMCE.get('article').getContent();
alert(content);
}


<textarea name="article">
  //content here
</textarea>

点击按钮获取编辑器的内容......

<button onclick="get_content()">Get content</button> 

DEMO