web-dev-qa-db-ja.com

tinymce 4のツールバーで見出し(h1、h2、h3)を直接取得する方法

(tinymceバージョン3のように)ツールバーの見出し(h1、h2、h3)を直接変更したいのですが、新しいアーティカルを作成するときに非常に頻繁に使用します。インターネットで検索しようとしていますが、答えが見つかりませんでした。私を助けてください。どうもありがとう enter image description here

23
saurom_90

この答えは確かに遅く届きますが、多分それは私のような他の人、同じ質問に対する答えを探している人々を助けることができます。ここで読みました: http://blog.ionelmc.ro/2013/10/17/tinymce-formatting-toolbar-buttons/

まず、プラグインを作成する必要があります:

tinyMCE.PluginManager.add('stylebuttons', function(editor, url) {
  ['pre', 'p', 'code', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'].forEach(function(name){
   editor.addButton("style-" + name, {
       tooltip: "Toggle " + name,
         text: name.toUpperCase(),
         onClick: function() { editor.execCommand('mceToggleFormat', false, name); },
         onPostRender: function() {
             var self = this, setup = function() {
                 editor.formatter.formatChanged(name, function(state) {
                     self.active(state);
                 });
             };
             editor.formatter ? setup() : editor.on('init', setup);
         }
     })
  });
});

そして、それをツールバーで使用します。

tinyMCE.init({
   selector: '#id',
   toolbar: "undo redo | style-p style-h1 style-h2 style-h3 style-pre style-code",
   plugins: "stylebuttons",
});
33
Angel
        tinymce.init({
            toolbar: 'undo redo | alignleft aligncenter alignright alignjustify | formatselect fontselect fontsizeselect | bullist numlist | outdent indent',
         });

これは、TinyMCE 4のツールバーにH1、段落、その他のオプションをすばやく追加する方法です。

完全なリストについては、以下を参照してください。 http://www.tinymce.com/wiki.php/Controls 特に「コア」セクション。これは、最も一般的に使用されるツールを示しています。

13
guest

次を使用して私のために働いた

tinymce.init({
    toolbar: 'formatselect',
    block_formats: 'Paragraph=p;Heading 2=h2;Heading 3=h3;Heading 4=h4;',
});

エディターは次のようになります。

enter image description here

8
atoms

TINYMCEフォーラムでこの質問を参照してください。

http://www.tinymce.com/forum/viewtopic.php?id=32801

これらのパラメーターを構成で使用します。

style_formats: [
            {title: 'Headers', items: [
                {title: 'h1', block: 'h1'},
                {title: 'h2', block: 'h2'},
                {title: 'h3', block: 'h3'},
                {title: 'h4', block: 'h4'},
                {title: 'h5', block: 'h5'},
                {title: 'h6', block: 'h6'}
            ]},

            {title: 'Inline', items: [
                {title: 'Bold', inline: 'b', icon: 'bold'},
                {title: 'Italic', inline: 'i', icon: 'italic'},
                {title: 'Underline', inline: 'span', styles : {textDecoration : 'underline'}, icon: 'underline'},
                {title: 'Strikethrough', inline: 'span', styles : {textDecoration : 'line-through'}, icon: 'strikethrough'},
                {title: 'Superscript', inline: 'sup', icon: 'superscript'},
                {title: 'Subscript', inline: 'sub', icon: 'subscript'},
                {title: 'Code', inline: 'code', icon: 'code'},
            ]},

            {title: 'Blocks', items: [
                {title: 'Paragraph', block: 'p'},
                {title: 'Blockquote', block: 'blockquote'},
                {title: 'Div', block: 'div'},
                {title: 'Pre', block: 'pre'}
            ]},

            {title: 'Alignment', items: [
                {title: 'Left', block: 'div', styles : {textAlign : 'left'}, icon: 'alignleft'},
                {title: 'Center', block: 'div', styles : {textAlign : 'center'}, icon: 'aligncenter'},
                {title: 'Right', block: 'div', styles : {textAlign : 'right'}, icon: 'alignright'},
                {title: 'Justify', block: 'div', styles : {textAlign : 'justify'}, icon: 'alignjustify'}
            ]}
        ]