2

我在(9.1.1)的最后一个版本中添加了fontcolor 插件。RedactorJS它不起作用。我无法添加 plunker / jsFiddle 因为RedactorJS需要许可证,但我提供了我的 conf 文件:

<script src="redactor/redactor.min.js"></script>
<script src="plugins/fontcolor/fontcolor.js"></script>

<script type="text/javascript">
$(function() {
$('#redactor').redactor({
    buttons: [
        'bold',
        'italic',
        'underline',
        'fontcolor',
        'formatting',
        'image',
        'link',
        'unorderedlist',
        'orderedlist',
        'alignment',
        '|',
        'html'
    ]
});
});
</script>
<textarea id="redactor" name="content">
    <h2>Hello and Welcome</h2>
    <p>...</p>
</textarea> 
4

1 回答 1

3

解决这个问题:

$('#redactor').redactor({
    plugins: ['fontcolor'],
    buttons: [
        'bold',
        'italic',
        'underline',
        'formatting',
        'image',
        'link',
        'unorderedlist',
        'orderedlist',
        'alignment',
        '|',
        'html'
    ]
});
于 2013-08-16T09:13:40.893 回答