扩展Fckeditor2.6.4中标签使其支持把标签体的内容作为编辑器默认值

 以前的fckeditor在jsp中使用时,可以把编辑器的默认值写在标签体中,如下


<FCK:editor id="documentContent"  >

       <a href="padp.jsp">Plug-in Application Develop Platform</a>
</FCK:editor> 

 

但在使用fckeditor2.6.4和for java 2.4时不能用上面那种方式写只能这样写

 <FCK:editor instanceName="content" value="PADP">       </FCK:editor>  

 

这样的缺点就是不能把默认值设置为带"或'的内容

不知道fckeditor为什么后来的版本不支持了,没办法,只改给改了

 

1.把fckeditor-java-2.4.1-src中java源文件copy到工程中(记得把原来fckeditor-java-core-2.4.1.jar中的net.fckeditor.handlers下的default.properties复制到工程中对应包,还有把FCKeditor.tld复制到Web-Inf下)

2.修改net.fckeditor.FCKeditor.EditorTag文件

把extends TagSupport改为BodyTagSupport

删除原来的doStartTag(),doEndTag()方法,然后添加以下两个方法:


 public int doStartTag() throws JspException {
   return EVAL_BODY_BUFFERED;
 }
 public int doAfterBody()  throws JspException {
   BodyContent body = getBodyContent();
   String bodyString="";
   if (body!=null) {
    bodyString = body.getString();
   }
   try {
    if (bodyString.trim().length()>0) {
     value=bodyString;
    }
    JspWriter writer = body.getEnclosingWriter();
    fckEditor = new FCKeditor((HttpServletRequest) pageContext
      .getRequest(), instanceName, width, height, toolbarSet,
      value, basePath);
    writer.println(fckEditor);
   } catch (Exception e) {
    throw new JspException(e);
   }
   
   return SKIP_BODY;
 }

 

3.这样再用下面的方式写就没问题了

<FCK:editor id="documentContent"  >

       <a href="padp.jsp">Plug-in Application Develop Platform</a>
</FCK:editor> 

有问题?直接google! <script type="text/javascript"> </script> <script src="http://pagead2.googlesyndication.com/pagead/show_sdo.js" type="text/javascript"></script>

<script type="text/javascript"> </script> <script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值