Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 tinyMCE 初学者...
我在浏览器中显示 tinyMCE editot,并能够将样式添加到 textarea 内容
如何使用 Php、Javascript 从 tinyMCE 编辑器获取 html 代码...
您可以使用
tinymce.activeEditor.getContent()
或者如果您知道您的编辑器 ID
tinymce.get('my_editor_id').getContent();