移动系统liao
2024-04-11 f366fea2c6c83020c1e6423e2c66242678b8f877
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div id="editor1">
    <p>Hello world!</p>
</div>
 
<div id="editor2">
    <p>Hello world!</p>
</div>
 
<script>
    exportPdfUtils.initManualTest();
 
    CKEDITOR.replace( 'editor1', exportPdfUtils.getDefaultConfig( 'manual', {
        extraPlugins: 'exportpdf',
        exportPdf_service: 'https://cksource.com'
    } ) );
 
    CKEDITOR.replace( 'editor2', exportPdfUtils.getDefaultConfig( 'manual', {
        removePlugins: 'notification',
        exportPdf_service: 'https://cksource.com'
    } ) );
</script>