2

我有一个 ID 为“文章”的文本区域。

这是我的js中的内容:

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

并获取编辑器的内容:

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

但它似乎不起作用,任何想法我哪里出错了?

4

2 回答 2

5
tinyMCE.activeEditor.getContent()
于 2014-12-23T21:50:14.207 回答
2

试着按照这个小提琴它可能会帮助你弄清楚....

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> 

演示

于 2012-12-05T17:42:54.800 回答