页面上存在多个FckEditor编辑器的验证方法
程序员文章站
2022-03-20 15:08:29
有时我们需要在一个页面上使用多个fck的实例,首先需要按照id获取fck的实例。例如: 复制代码 代码如下:
有时我们需要在一个页面上使用多个fck的实例,首先需要按照id获取fck的实例。例如:
<fckeditorv2:fckeditor id="fckdescription" runat="server" toolbarset="basic" height="250">
</fckeditorv2:fckeditor>
使用fckeditorapi.getinstance获取fck实例。
function fckeditor_oncomplete(editorinstance)
{
oediter = fckeditorapi.getinstance('fckdescription');
}
使用这个方法就可以处理多个fck的情况。
fckeditorapi介绍
复制代码 代码如下:
<fckeditorv2:fckeditor id="fckdescription" runat="server" toolbarset="basic" height="250">
</fckeditorv2:fckeditor>
使用fckeditorapi.getinstance获取fck实例。
复制代码 代码如下:
function fckeditor_oncomplete(editorinstance)
{
oediter = fckeditorapi.getinstance('fckdescription');
}
使用这个方法就可以处理多个fck的情况。
fckeditorapi介绍