TinyMCE Hide the bar
问题 I use tinymce and i want to hide the button toolbar. Is there a way to do that? 回答1: Using tinyMCE 4 you can set the following in the tinymce init: toolbar: false Here is a full blown example of the init if you want a clean editor with no options: <script type="text/javascript"> tinymce.init({ menubar: false, statusbar: false, toolbar: false }); </script> 回答2: There is a plugin that will do this either from a link outside of the editor or from the toolbar itself. http://www.neele.name/pdw