Fckeditor怎么设置默认值
Fckeditor怎么设置默认值
日期:2021-12-27 06:53:21 人气:1
方法1:通过html标记
<textarea name="contest" id="contest" style="width: 100%; height: 1800px;">你的值</textarea>
方法2:通过fckeditor的API
FCKeditorAPI.GetInstance('contest').SetHTML('你的值');
<textarea name="contest" id="contest" style="width: 100%; height: 1800px;">你的值</textarea>
方法2:通过fckeditor的API
FCKeditorAPI.GetInstance('contest').SetHTML('你的值');