0

spaceShared プラグインがテキストエリアの中央に新しいツールバーを追加する原因がわかりません。

最近、SharedSpaces プラグインを CkEditor に追加し、SharedSpaces から取得したサンプルからコードを取得しました。それでも、テキストエリアの間にツールバーが表示されます。

私のHTMLコード:

<div id="topSpace">
    </div>
    <form action="sample_posteddata.php" id="editorsForm" method="post">
        <p>
                    <label for="editor1">
                        Editor 1 (uses the shared toolbar and elements path):</label>
                    <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
        </p>
        <p>
                    <label for="editor2">
                        Editor 2 (uses the shared toolbar and elements path):</label>
                    <textarea cols="80" id="editor2" name="editor2" rows="3">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
        </p>
        <p>
                    <label for="editor3">
                        Editor 3 (uses the shared toolbar only):</label>
                    <textarea cols="80" id="editor3" name="editor3" rows="3">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
        </p>
        <p>
                    <label for="editor4">
                        Editor 4 (no shared spaces):</label>
                    <textarea cols="80" id="editor4" name="editor4" rows="3">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
        </p>
        <p>
                    <input type="submit" value="Submit" />
        </p>
    </form>
    <div id="bottomSpace">
    </div

JavaScript部分

<script type="text/javascript">
    //<![CDATA[

        // Create all editor instances at the end of the page, so we are sure
        // that the "bottomSpace" div is available in the DOM (IE issue).

        CKEDITOR.replace( 'editor1',
            {
                sharedSpaces :
                {
                    top : 'topSpace',
                    bottom : 'bottomSpace'
                },

                // Removes the maximize plugin as it's not usable
                // in a shared toolbar.
                // Removes the resizer as it's not usable in a
                // shared elements path.
                removePlugins : 'maximize'
            } );

        CKEDITOR.replace( 'editor2',
            {
                sharedSpaces :
                {
                    top : 'topSpace',
                    bottom : 'bottomSpace'
                },

                // Removes the maximize plugin as it's not usable
                // in a shared toolbar.
                // Removes the resizer as it's not usable in a
                // shared elements path.
                removePlugins : 'maximize'
            } );

        CKEDITOR.replace( 'editor3',
            {
                sharedSpaces :
                {
                    top : 'topSpace',
                    bottom : 'bottomSpace'
                },

                // Removes the maximize plugin as it's not usable
                // in a shared toolbar.
                removePlugins : 'maximize, elementspath',

            } );

        CKEDITOR.replace( 'editor4' );
    //]]>
    </script>

表示されている不要なツールバーを修正または削除するにはどうすればよいですか

4

2 に答える 2