Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我真的对CKEditor感到困惑。当我加载或重新加载页面时,CKEditor 会在页面的第一个请求时自动禁用。每当我单击源按钮,然后再次单击源进行正常编辑时,内容区域就会启用,然后我才能编写。
对于页面加载时隐藏的文本区域,我遇到了类似的问题……并且在某些操作上说单击按钮……它被显示……我的行为完全相同。
我在页面加载时初始化 CKEDITOR.replace('control') 。
后来我在控件的显示事件中更改了它,这对我有用。
就像是
$('#ControlId').show(); $('#ControlId').val(question[1]); CKEDITOR.replace('ControlId');