0

私は TinyMCE をインストールしましたが、フォームが従来の方法で (一部の php ページに) 投稿された場​​合、それは問題ではありません。stripslashes() 関数などを介して変数を渡すことができるからです。

残念ながら、私のフォームの 1 つは jquery $.ajax モジュールを介して渡されます。PHP 操作は不可能です。javascript を介して完全にフォーマットされた tinyMCE 出力を渡す方法はありますか?

4

1 に答える 1

3

この回答によると: https://stackoverflow.com/a/6541822/349012可能です:

// Get the HTML contents of the currently active editor
tinyMCE.activeEditor.getContent();

// Get the raw contents of the currently active editor
tinyMCE.activeEditor.getContent({format : 'raw'});

// Get content of a specific editor:
tinyMCE.get('content id').getContent()

別の参照: https://stackoverflow.com/a/11112221/349012

于 2012-09-18T10:24:42.010 に答える