在Froala编辑器中插入文件时,光标始终位于回形针图标之前
作者:互联网
复制步骤::
1)打开Froala链接https://www.froala.com/wysiwyg-editor
2)清除编辑器.
3)单击文件图标,然后选择文件.
4)问题:光标始终位于回形针图标之前.
验收标准:当将文件附加到编辑器时,将光标置于回形针图标之后.
视频::
解决方法:
在某些浏览器中已发生此问题.我已应用一种技巧来解决该问题.
在将文件上传到服务器之前触发.
$('.selector').on('froalaEditor.file.beforeUpload', function (e, editor, files) {
// Code....
});
在成功完成上传文件的请求后触发.
$('.selector').on('froalaEditor.file.inserted', function (e, editor, $file, response) {
editor.html.insert(" "); //add extra space after successfully file uploaded.
});
标签:wysiwyg,froala,javascript,jquery 来源: https://codeday.me/bug/20191108/2008802.html