ckeditor加载完成后如何提交
您好,我在我的一个应用程序中使用 CKEditor。
有没有一种方法可以在 ckeditor 加载后提交表单。
{
CKEDITOR.replace( 'g_content_text' );
toolbar : 'Basic'
CKEDITOR.on('instanceReady',
function( evt )
{
var editor = evt.editor;
editor.execCommand('maximize');
});
};
我有
{
document.form1.submit();
}
,但它在 ckeditor 完成加载之前提交表单。
Hi There I am using CKEditor in one of my applications.
Is there a way that I can submit a form once the ckeditor has loaded.
{
CKEDITOR.replace( 'g_content_text' );
toolbar : 'Basic'
CKEDITOR.on('instanceReady',
function( evt )
{
var editor = evt.editor;
editor.execCommand('maximize');
});
};
I have the
{
document.form1.submit();
}
but it submits the form before the ckeditor has finished loading.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试放在
editor.execCommand('maximize');
之后?一旦实例准备好,它似乎就会被调用。Tried putting after the
editor.execCommand('maximize');
? It seems to be called once the instance is ready.