我正在使用$(document).ready(function() {
$('.inline-editable').attr('contenteditable', 'true');
$('.inline-editable').each(function(index, elt) {
var editorId = $(elt).attr('id');
CKEDITOR.inline(editorId, {
on: {
drop: function (event) {
// I can see the alert,
// so the drop occurs but it doesn't copy any content
alert('DROP');
// Without this : I only get the url as text in the editor
event.preventDefault();
event.stopPropagation();
return false;
}
}
});
});
});
用于CMS。
我有一个图像列表到一个窗格(图像的灰色部分),我想将它拖放到我的ck编辑器内容(黄色部分)。
这项工作完全适用于Chrome / Firefox,但它并不适用于Safari。在Safari上,会发生丢弃,但不会复制任何内容。
{{1}}
我不明白为什么Safari没有"掉落"我的图片的HTML代码,如Chrome / Firefox。
某处有错误或者我忘记了启用此选项的选项吗?
有什么想法可以帮助解决这个问题吗?