|
使用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里面的内容没有反应,无法还原回去……
|
|