2015-09-13 96 views
0

我只想從TinyMCE編輯器的菜單中刪除文件編輯插入視圖選項。 enter image description here隱藏文件編輯從TinyMCE編輯器插入

我嘗試使用檢查元素和使用JavaScript代碼如下刪除的菜單行:

document.getElementById('tinymce-16').style.display = 'none'; 

,但它不工作。我得到錯誤

Uncaught TypeError: Cannot read property 'style' of null 

回答

1

這其實很簡單。您需要指定在編輯器初始化時要顯示的內容。

HTML

<form> 
    <textarea></textarea> 
</form> 

JS

tinymce.init({ 
    selector: 'textarea', 
    plugins: [ 
     "code table" 
    ], 
    menubar: "format table tools", 
}); 

這將只顯示格式,表格和工具。看到這個DEMO