我正在以串联模式使用CK Editor 4
var input = document.createElement('DIV');
input.setAttribute('contenteditable','true');
input.innerHTML = '<p>my content</p>';
input.style.position='absolute';
input.style.top='300px'
window.CKE.inline(input,{
startupFocus:true,
// uiColor:'#545454',
toolbar: [
[
"Cut",
"Copy",
"Paste",
"PasteText",
"PasteFromWord",
"Undo",
"Redo",
"Bold",
"Italic",
"Underline",
"Strike",
// "Subscript",
// "Superscript",
"CopyFormatting",
"RemoveFormat",
"Outdent",
"Indent",
// "Blockquote",
"Table",
"JustifyLeft",
"JustifyCenter",
"JustifyRight",
"Link",
"Unlink",
"HorizontalRule",
"Styles",
"Format",
"Font",
"FontSize",
"TextColor",
"BGColor",
"Maximize"
]
]
})
编辑器创建成功,但工具栏未漂浮在页面上。工具栏位于内容的顶部,为内容提供更多的顶部偏移。 我想要的是内容保持位置,工具栏浮在内容顶部。