参见下图。

我在表格末尾添加了一个重置​​按钮。

当用户按下“重置”时,我可以清除所有输入。

但我不知道如何清除此FCKeditor值。

Image

最佳答案

我认为:

var fckEditor = FCKeditorAPI.GetInstance('your-fckeditor-textbox-id');
fckEditor.EditorDocument.body.innerHTML = '';


会做你想要的

关于php - 如何使用PHP或JavaScript中的“重置”按钮重置FCKeditor?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1544880/

10-09 15:14