我有

<script src="cledtor.js"></script
<script src="cledtortable.js"></script


然后在我的HTML中

      $(document).ready(function() {

                 $("#editor-content").cleditor({
                        width: 708,
                        height: 350,
                        controls:
                            "bold italic underline strikethrough | alignleft center alignright justify | size " +
                                "| color removeformat | outdent indent | bullets numbering rule | image link unlink | undo redo | pastetext ",
                        colors:
                            "000000 898989 db0000 005e20 06758c ",

                        sizes:
                            "1,2,3,4,5,6,7",

                        useCSS: false,
                        docType:
                            '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
                        docCSSFile:
                            "",
                        bodyStyle:
                            "margin:4px; font:10pt Arial,Verdana; cursor:text"
                    });
    });


如果我添加“表”控件,它将无法正常工作。作为此代码,仍然没有表格图标。
我在button.gif所在的地方有table.gif图像

Official ClEditor page

最佳答案

1:将js文件上传到cleditor js文件所在的目录,并包含在您的js包含文件中(如您所示)

2:将table.gif上载到图像目录

3:将“表格”添加到控件行中(不带引号)

应该像其他任何插件一样出现:-)

关于javascript - 如何在ClEditor中插入表格插件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11786144/

10-09 22:53