主题: 成功换编辑器后还出现了个小问题
作者: 05309, 发布日期: 2010-10-23 00:36:31, 浏览数: 5301

这个是我以前调用的编辑器代码

<%
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "fckeditor/"
oFCKeditor.ToolbarSet = "Default"
oFCKeditor.Width = "100%"
oFCKeditor.Height = "260"
oFCKeditor.Value = rs("pf_custom_content")
oFCKeditor.Create "pf_custom_content"
%>

 

我换成KindEditor把以上替换了,就这样

<textarea id="pf_custom_content" name="pf_custom_content"  cols="100" rows="8" style="width:700px;height:200px;"></textarea>
     
      <script charset="utf-8" src="/editor/kindeditor.js"></script>
<script>
        KE.show({
                id : 'pf_custom_content'
        });
</script>

可以有一个问题,修改以前文本框内容是空白。要怎么样把数据读进来

发表新帖 发表回复