我正在使用froala js 1.9 js ..它一直运行良好,但是现在输入密钥对编辑器不起作用。
$('#txt_blog_editor').editable({
inlineMode: false,
minHeight: 700,
//height: 700,
plainPaste: false,
width: 1097,
allowedImageTypes: ["jpeg", "jpg", "png"],
borderColor: '#00008b',
inverseSkin: false,
spellcheck: true,
imageUploadURL: 'BlogPhotos.ashx',
autosaveInterval: 1000,
imageErrorCallback: function (data) {
if (data.errorCode == 1) {
}
// No link in upload response.
else if (data.errorCode == 2) {
}
// Error during file upload.
else if (data.errorCode == 3) {
}
// Parsing response failed.
else if (data.errorCode == 4) {
}
},
buttons: ['bold', 'italic', 'underline', 'strikeThrough', 'sep', 'align', 'insertOrderedList', 'insertUnorderedList', 'outdent', 'indent', 'sep', 'createLink', 'insertImage', 'insertVideo', 'undo', 'redo', 'insertHorizontalRule','color']
});
这是我的初始化代码...
我已经检查了输入密钥正在处理任何其他页面元素,但不是这个编辑器。
答案 0 :(得分:1)
有新版本1.2.0。您应该尝试更新它,这可能会解决您的问题。