本文介绍了TinyMCE 4-remove()或destroy()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 TinyMCE编辑器.我想删除或销毁tinymce编辑器(页面包含多个编辑器).还要删除tinyMCE添加的类和ID.

I am using TinyMCE editor.I want to remove or destroy tinymce editors (Page contain more then one editor). Also remove classes and IDs added by tinyMCE.

但保留可编辑的内容

我尝试过:

tinymce.remove()
tinymce.destroy()
tinymce.execCommand('mceRemoveControl',true,'.editable');

请注意:

我的编辑器类是.editable,而且我的页面中只有一个编辑器.

my editor class is .editable, And I have more then one editors in my page.

推荐答案

您需要一个编辑器ID(通常等于您的编辑器html根元素ID(在大多数情况下是一个文本区域)).

You need an editor id (which usually equals your editor html root elements id (in most cases a textarea)).

示例:

tinymce.execCommand('mceRemoveControl', true, 'my_original_textarea_id');

这篇关于TinyMCE 4-remove()或destroy()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 22:59