用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2825|回复: 0
收起左侧

使用fckeditor,怎么解决点击表单中的重置,fckeditor里的内容

[复制链接]
发表于 2011-6-9 15:08:26 | 显示全部楼层 |阅读模式
使用fckeditor,怎么解决点击表单中的重置,fckeditor里的内容不还原的问题,求救
<form method='post' action="renovate.php?" name='content'>
<?php
    include ('../fckeditor/fckeditor.php');
    $fck = new FCKeditor('content');
    $fck->ToolbarSet = 'Default' ;
    $fck->InstanceName = 'content' ;
    $fck->Width = '80%';
    $fck->Height = '500';
    $fck->FormatOutput=true;
    $fck->Value = $list;
    $fck->Create();
?>
<input type="submit" name="submit" id="submit" value="提交" >
<input type="reset" name="reset" id="reset" value="重置" >
</form>

点击重置之后,fck里面的内容没有反应,无法还原回去……

本版积分规则