FCKeditor.java 2.6的新功能

今早打开JE,看到新闻中有提到FCKEditor java2.6版本已经发布,就赶紧试试,看了后感觉变化不大,增加了一个功能,可能很多人在这个上面花过很大力气,以后就不用愁了。

以前的FCKeditor java版本是这样调用编辑器的:
<FCK:editor instanceName="EditorDefault">
  <jsp:attribute name="value">

     This is some <strong>sample text</strong> with <code>instanceName = "EditorDefault"</code> and<code>inputName = "EditorContent"</code>.

  </jsp:attribute>
</FCK:editor>

只能指定instanceName,可以通过FireBug看到生成的hidden的id和name都是这个instanceName,在使用过程当中带来了很多不便。


FCKeditor.java 2.6中在FCK标签中增加inputName属性,使用的代码成为:
<FCK:editor instanceName="EditorDefault" inputName="EditorContent">
  <jsp:attribute name="value">

     This is some <strong>sample text</strong> with <code>instanceName = "EditorDefault"</code> and<code>inputName = "EditorContent"</code>.

  </jsp:attribute>
</FCK:editor>

如果在相同页面再出现两个:
<FCK:editor instanceName="EditorDefault2" inputName="EditorContent">
  <jsp:attribute name="value">

     This is some <strong>sample text</strong> with <code>instanceName = "EditorDefault2"</code> and<code>inputName = "EditorContent"</code>.

  </jsp:attribute>
</FCK:editor>

<FCK:editor instanceName="EditorDefault3" inputName="EditorContent">
  <jsp:attribute name="value">

     This is some <strong>sample text</strong> with <code>instanceName = "EditorDefault3"</code> and<code>inputName = "EditorContent"</code>.

  </jsp:attribute>
</FCK:editor>

可以看到网页上生成的代码如下图:

FCKeditor.java 2.6的新功能_第1张图片
注意三个hidden的id和Name,这就是2.6版本最新的功能了。

另外在2.5版本中已经增加了 新建目录权限 上传权限 上传路径 上传文件重命名等控制,具体可以见这里:
http://01404421.iteye.com/blog/461060
很多入门者经常要使用的功能还有自动过滤Word格式: http://01404421.iteye.com/blog/498878
在FCK默认是没有中文字体的,比如“楷体”“宋体”等,自定义中文字体可能会遇到乱码问题,见这里:
http://01404421.iteye.com/blog/487917

你可能感兴趣的:(java,Blog,fckeditor,Firebug)