1

我有一个带有小 mce 的文本区域,我像这样加载它:

$(document).ready(function () {

    tinyMCE.init({
        mode: "textareas",
        ...

这个文本区域是一个表格。我将表单提交按钮绑定到:

$('#btnSubmit').click(function() {

    tinymce.triggerSave();

    var editorContent = tinyMCE.get('Description').getContent();
    if (editorContent == '' || editorContent == null)
    {
        $(tinymce.activeEditor.getBody()).css("background-color", '#ffeeee');
        $(tinymce.activeEditor.getBody().parentNode).css("background-color", '#ffeeee');
        $(tinymce.activeEditor.getBody().parentNode).css("border", '1px solid #ff0000');
    }
});

在我的实体类中,我有Required属性。我的目标是在模型无效时
制作 tinyMCE 背景。red但我从 ti 问题标题中得到错误。
有什么帮助吗?
因此,验证有效。如果我删除 textarea 空检查并让颜色改变,它会改变。但是问题是当文本区域中有东西时,我点击提交区域首先变成红色然后提交。
如果验证失败,是否有一些功能可以让我做点什么?

4

2 回答 2

5

这听起来就像一个未定义的对象错误 - 代码无法解析这一行tinyMCE.get('Description').getContent();

您似乎在activeEditor有时使用和有时不使用之间混合,所以我已经标准化了代码,所以您总是依赖activeEditor- 这意味着我已经删除了触发错误的行。您似乎也在使用tinymce和之间切换,tinyMCE这可能不会导致问题,但最好避免......所以我也将其标准化。

没有看到更多其他代码和标记的设置方式,但是很难准确地判断发生了什么。我的更改能解决问题吗?

$('#btnSubmit').click(function() {

  tinyMCE.triggerSave();

  var editorContent = tinyMCE.activeEditor.getContent();
  if (editorContent == '' || editorContent == null)
  {
    $(tinyMCE.activeEditor.getBody())
      .css("background-color", '#ffeeee')
      .parent()
      .css({
        "background-color": '#ffeeee',
        "border": '1px solid #ff0000'
      });
  }
});
于 2012-08-26T00:59:28.313 回答
0

如果您无法控制 TinyMCE 的 init 方法,则可以遵循此解决方案。

jQuery(document).ready(function($) {

    function myCustomSetContent( id, content ) {
        // Check if TinyMCE is defined or not.
        if( typeof tinymce != "undefined" ) {
            var editor = tinymce.get( id );
            // Check if TinyMCE is initialized properly or not.
            if( editor && editor instanceof tinymce.Editor ) {
                editor.setContent( text );
                editor.save( { no_events: true } );
            } else {
                // Fallback
                // If TinyMCE is not initialized then directly set the value in textarea.
                //TinyMCE will take up this value when it gets initialized.
                jQuery( '#'+id ).val( text );
            }
            return true;
        }
        return false;
    }

    function myCustomGetContent( id ) {
        // Check if TinyMCE is defined or not.
        if( typeof tinymce != "undefined" ) {
            var editor = tinymce.get( id );
            // Check if TinyMCE is initialized properly or not.
            if( editor && editor instanceof tinymce.Editor ) {
                return editor.getContent();
            } else {
                // Fallback
                // If TinyMCE is not initialized then directly set the value in textarea.
                // TinyMCE will take up this value when it gets initialized.
                return jQuery( '#'+id ).val();
            }
        }
        return '';
    }

    $(".class-to-update-content").on("click", function(e) {
        myCustomSetContent( "tinymce-editor-id", "New Content in Editor" );
    });

    $(".class-to-get-content").on("click", function(e) {
        $("div.class-to-display-content").html( myCustomGetContent( "tinymce-editor-id" ) );
    });
});

参考:http ://blog.incognitech.in/tinymce-undefined-issue/

于 2015-01-28T11:00:11.423 回答