TinyMce 编辑器中的纯文本和富文本编辑器选项
我正在使用tinymce编辑器来很好地查看用户在其中写一些评论的textarea
。我想给他两个选择:一个是纯文本,另一个是富文本编辑器选项。当用户单击纯文本选项时,所有富文本选项都会被删除,而当用户单击富文本时,它将获得所有格式文本选项。我想在 TinyMce 编辑器中执行此操作。
有谁知道如何实施吗?我在过去 6 天里一直在寻找如何实现这一点,但我没有得到任何解决方案。
I am using the tinymce editor to give a good look of textarea
where user write some comments. I want to give him two options: one is plain text and the other is a rich text editor option. When the user clicks on plain text option all rich text option removed and when user click on rich text it will get all options of formatting text. I want to do this in TinyMce Editor.
Is there anyone know how to implement it? I am searching from last 6 days how to implement this but i am failed to get any solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是我为我的网站所做的;
以及 BODY 标签内
This is what i did for my site;
And inside BODY tag
好吧,你可以看这里:
Toggle editor with JavaScript
使用的代码是:
如果您希望根据用户从另一个页面选择的选项来切换编辑器模式,您可以在页面加载时执行(或不执行)上述函数。
该页面上还有指向其他示例的链接,您可能会发现它们也很有用。
更新:
第二次阅读问题时,您要求的是纯文本/html,而不是 html-source/wysiwyg 模型。我上面的建议不是确切的解决方案,但如果纯文本模式下的模式切换被隐藏和锁定,它仍然是可行的。
Well, you can take a look here:
Toggle editor with JavaScript
The code used is:
If you want the editor mode to be toggled based on the option chose by the user from another page, you can execute (or not to) the above function on page load.
There are links to other examples on that page which you might find useful too.
Update:
Upon reading the question a second time, you are asking for a plain-text/html and not a html-source/wysiwyg model. My suggestion above isn't the exact solution but it is still workable if the mode switching in the plain-text mode is hidden and locked.