2

IDが「article」のテキスト領域があります。

これが私の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 に答える