在焦点和模糊上更改TinyMCE的边框颜色

时间:2010-12-17 01:16:41

标签: javascript jquery tinymce focus onblur

我正在使用带有TinyMCE的jQuery。当TinyMCE编辑器处于焦点时,我试图让边框颜色改变,然后在模糊处,改变回来。

在ui.css中,我添加/更改了这些:

.defaultSkin table.mceLayout {border:0; border-left:1px solid #93a6e1; border-right:1px solid #93a6e1;}
.defaultSkin table.mceLayout tr.mceFirst td {border-top:1px solid #93a6e1;}
.defaultSkin table.mceLayout tr.mceLast td {border-bottom:1px solid #93a6e1;}

我设法为init脚本做到了这一点:

$().ready(function() {

    function tinymce_focus(){
        $('.defaultSkin table.mceLayout').css({'border-color' : '#6478D7'});
        $('.defaultSkin table.mceLayout tr.mceFirst td').css({'border-top-color' : '#6478D7'});
        $('.defaultSkin table.mceLayout tr.mceLast td').css({'border-bottom-color' : '#6478D7'});
    }

    function tinymce_blur(){
        $('.defaultSkin table.mceLayout').css({'border-color' : '#93a6e1'});
        $('.defaultSkin table.mceLayout tr.mceFirst td').css({'border-top-color' : '#93a6e1'});
        $('.defaultSkin table.mceLayout tr.mceLast td').css({'border-bottom-color' : '#93a6e1'});
    }

    $('textarea.tinymce').tinymce({
        script_url : 'JS/tinymce/tiny_mce.js',
        theme : "advanced",
        mode : "exact",
          theme : "advanced",
          invalid_elements : "b,i,iframe,font,input,textarea,select,button,form,fieldset,legend,script,noscript,object,embed,table,img,a,h1,h2,h3,h4,h5,h6",

          //theme options 
          theme_advanced_buttons1 : "cut,copy,paste,pastetext,pasteword,selectall,|,undo,redo,|,cleanup,removeformat,|", 
          theme_advanced_buttons2 : "bold,italic,underline,|,bullist,numlist,|,forecolor,backcolor,|", 
          theme_advanced_buttons3 : "", 
          theme_advanced_buttons4 : "", 
          theme_advanced_toolbar_location : "top", 
          theme_advanced_toolbar_align : "left", 
          theme_advanced_statusbar_location : "none", 
          theme_advanced_resizing : false,

          //plugins
          plugins : "inlinepopups,paste",
          dialog_type : "modal",
        paste_auto_cleanup_on_paste : true,


        setup : function(ed) {
              ed.onClick.add(function(ed, evt) {
                  tinymce_focus(); 
              });

           }



    });    


});

...但是这个(onclick,更改,边框颜色)是我唯一能够成功运作的东西。我所有的其他尝试都阻止了TinyMCE加载或者什么也没做。我浏览了TinyMCE维基页面和他们的论坛,但是却无法将散落的小块信息拼凑成一幅完整的图片。

有没有办法做到这一点?我只是忽略了一些简单的东西,或者它实际上是否真的很复杂?

5 个答案:

答案 0 :(得分:3)

我重新讨论了这个问题,最后得到了一个支持更多浏览器的jQuery解决方案,因为在ed.getDoc()上使用addEventListener()函数是命中注定,并且AddEvent()函数无效all on ed.getDoc()(“对象不支持的函数”错误)。

以下内容确认适用于IE8,Safari 5.1.7,Chrome 19,firefox 3.6& 12.它似乎不适用于Opera 11.64。

setup: function(ed){
            ed.onInit.add(function(ed){
                $(ed.getDoc()).contents().find('body').focus(function(){tinymce_focus();});
                $(ed.getDoc()).contents().find('body').blur(function(){tinymce_blur();});                   
            });
        }

答案 1 :(得分:1)

您可以在自己的插件中执行类似

的操作
ed.onInit.add(function(ed){    
    ed.getDoc().addEventListener("click", function(){
         tinymce_focus();
       }
    );

    ed.getDoc().addEventListener("blur", function(){
      tinymce_blur();
    }, false);
});

答案 2 :(得分:1)

我以为我回复了这一段时间,但我猜不是。我在tinymce配置中结束了这个:

setup: function(ed){
            ed.onInit.add(function(ed){

                //check for addEventListener -- primarily supported by firefox only
                var edDoc = ed.getDoc();
                if ("addEventListener" in edDoc){
                    edDoc.addEventListener("focus", function(){
                        tinymce_focus();
                    }, false);

                    edDoc.addEventListener("blur", function(){
                        tinymce_blur();
                    }, false);
                }

            });
        }

答案 3 :(得分:1)

setup:function(ed){
  ed.onClick.add(function(ed){
    tinymce_blur();
  });

  ed.onInit.add(function(ed){    
    ed.getDoc().addEventListener("blur", function(){
      tinymce_blur();
    }, false);
  });
}

对于焦点,您可以使用TinyMCE的de event“onClick”。对于模糊,响应预览是可以的。

答案 4 :(得分:1)

.tox:not([dir=rtl]) {
    border-color: #a4286a;
}