问题
I am the tinyMCE beginer...
i display the tinyMCE editot in browser and make able to add the style to the textarea content
How to get the html code from tinyMCE editor using Php,Javascript...
回答1:
You may use
tinymce.activeEditor.getContent()
or if you know your editor id
tinymce.get('my_editor_id').getContent();
来源:https://stackoverflow.com/questions/11503320/how-to-get-the-html-code-from-tinymce-editor-using-php-javascript