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 3.6.4
默认情况下,CKEditor 在双击时调用对话框属性,但在我正在工作的 CKEditor 上没有调用对话框属性。可能是什么原因?
双击属性在 plugin.js 文件中定义
editor.on( 'doubleclick', function( evt ) { var element = evt.data.element; if ( element.is( 'typeOfElement' ) ) evt.data.dialog = 'commandName'; }); },