9

我正在尝试从我之前创建的特定文本区域中删除 tinyMCE,但以下命令不断产生“未定义”错误(使用 firebug 控制台检查):

tinyMCE.execCommand('mceFocus', false, 'textarea-plainText');
tinyMCE.execCommand('mceRemoveControl', false, 'textarea-plainText')

我已经使用 jQuery 为该特定文本区域初始化了 TinyMCE:

$('textarea#textarea-plainText').tinymce({
                script_url : '<?php echo base_url(); ?>/assets/js/tinymce/tinymce.min.js',
                oninit: function() {
                            $("textarea#textarea-plainText").tinymce().setContent("");
                            $("textarea#textarea-plainText").tinymce().setContent(noteSecContent.html[0].notesec_content);
                        }
            });

我也尝试使用以下命令添加 tinyMCE,但它也返回 undefined,尽管我有一个带有“textarea-plainText”ID 的 textarea:

$.getScript('<?php echo base_url(); ?>assets/js/tinymce/tinymce.min.js', function() {
            window.tinymce.dom.Event.domLoaded = true;
            tinyMCE.init({
                mode: 'none'
            });
            tinyMCE.execCommand('mceAddControl', false, 'textarea-plainText');
        });

简而言之,我只能使用 jquery 方法或精确方法进行初始化。但不使用 tinyMCE.execCommand。不知何故,“exeCommand”命令不起作用。

文本区域的 HTML:

<div id="plainTextModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="plainTextLabel" aria-hidden="true">
  <div class="modal-body">
   <textarea id='textarea-plainText'></textarea>
  </div>
  <div class="modal-footer">
    <button class="btn btn-danger" data-dismiss="modal" aria-hidden="true">Cancel</button>
    <a href="" id="confirm-delete-note-section" class="btn btn-primary">Save</a>
    <a href="" id="confirm-delete-note-section" class="btn btn-info">Save &amp; Close</a>
  </div>
</div>

它是一个模态,所以它最初是隐藏的,直到调用模态。

顺便说一句,我正在使用 TinyMCE 4.0b1。

4

1 回答 1

15

你得到 undefined 因为在 4.x 中他们删除了mceRemoveControl并且mceAddControl(我不确定mceFocus)所以使用mceAddEditorandmceRemoveEditor代替。

因为这些代码做了与他们删除mceRemoveControlmceAddControl清理相同的事情。

并且不要忘记tinymce从现在开始您需要使用小写字母。

于 2013-06-18T18:03:05.503 回答