浏览 3445 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2010-01-07
最后修改:2010-01-07
以前的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> 可以看到网页上生成的代码如下图: 注意三个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 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2010-01-07
08年末用过,感觉还是有很多问题没解决。所以就废弃了,以前中文文件名的图片都无法上传。
|
|
返回顶楼 | |
发表时间:2010-01-07
最后修改:2010-01-07
黑暗浪子 写道 08年末用过,感觉还是有很多问题没解决。所以就废弃了,以前中文文件名的图片都无法上传。
java的2.5版本中已经可以自己控制文件路径和重命名了,现在用的还不错 |
|
返回顶楼 | |