zoukankan      html  css  js  c++  java
  • 主流页面编辑器比对:TinyMCE VS FCKeditor

      开发中先用的是 FCKeditor 编辑器,感觉页面展示的东西太繁琐,所以换了 TinyMCE 编辑器。 为了方便理解,本文不采用穿插比对

        

        先看 FCKeditor :

        1、jsp :结束标签不能贴着开始标签

      <fck:editor id="content" basePath="${ctx}/scripts/fckeditor/" skinPath="skins/office2003/">                                                 
       </fck:editor>

        

        2、js 取值、赋值

    //取值 - id
    var oEditor = FCKeditorAPI.GetInstance("content");  
    var content = $.trim(oEditor.GetXHTML(true));
    
    //赋值 - id
    var oEditor = FCKeditorAPI.GetInstance("content") ;                          
    oEditor.SetHTML("值") ;

         

        3、页面

        再看 TinyMCE:

        1、tinyMCE 在页面需要初始化

          tinymce.init({
               selector: "textarea",  //填充 textarea 标签
               upload_image_url: '${ctx}/uploadTinyMcePic', //配置的上传图片的路由(servlet 配置)
               height: 300,
               language:'zh_CN',
               plugins: [
                 'advlist autolink lists link  charmap print preview hr anchor pagebreak',
                 'searchreplace wordcount visualblocks visualchars code fullscreen',
                 'insertdatetime media nonbreaking save table contextmenu directionality',
                 'emoticons template paste textcolor colorpicker textpattern imagetools codesample toc help uploadimage fontselect'
               ],
               toolbar1: 'undo redo | insert | styleselect | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image',
               toolbar2: 'print preview media uploadimage | removeformat fontselect forecolor backcolor fontsizeselect emoticons | codesample help',
               image_advtab: true,
               templates: [
                 { title: 'Test template 1', content: 'Test 1' },
                 { title: 'Test template 2', content: 'Test 2' }
               ],
               menubar: false
           });

        PS:当页面有多个textarea 标签是,需要填充指定标签则 将 selector: "textarea" 改为:

    mode : "exact",//用特定的模式
    elements : "textareaEdit",//容器的id值,将来要在页面中替换的 textarea

        2、TinyMCE 取值、赋值:

    //取值
    var content = tinyMCE.activeEditor.getContent();
    
    //赋值 - id
    tinyMCE.get("content").setContent("值");

        3、页面

    由上可知:

      FCKeditor:配置简单,但界面繁杂,取值赋值相对复杂。

      TinyMCE: 每个页面都要初始化相对复杂,但界面简洁,取值赋值相对简单。

  • 相关阅读:
    Dubbo服务提供者Provider启动流程下(四)
    修改超链接的默认格式
    给 3Com 3C940 Gigabit LOM 安装Windows Server 2008 驱动
    Express版SQL定时备份BAK文件(SQL2005,SQL2008)
    DataGridView的行、列调整
    更新DNS缓存
    VB.Net类型转换——全角半角间转换(StrConv)
    VB.Net 获取或者转换时间不受系统时间格式影响
    Active Desktop
    VB.Net类型转换——全角半角间转换(StrConv)
  • 原文地址:https://www.cnblogs.com/linnuo/p/7269894.html
Copyright © 2011-2022 走看看