web-dev-qa-db-ja.com

TinyMCEにプレースホルダーテキストを追加するにはどうすればよいですか?

標準のテキストエリアの場合、placeholder=""を使用します。 tinymceを拡張して、このように機能させるにはどうすればよいですか。

CKEditorの場合と同様: http://alfonsoml.blogspot.com.es/2012/04/placeholder-text-in-ckeditor.html

17
user1556571

プレースホルダープラグイン は私にとってはうまくいきました。このプラグインは、TinyMCEエディターにHTML5プレースホルダー属性機能をもたらします。

19
Ryan Ahearn
    <html>
<head>
    <title>Bhanu Pratap, Tinymce with placeholder... </title>
    <script src="http://cdn.tinymce.com/4/tinymce.min.js"></script>
    <script type="text/javascript">
        tinymce.PluginManager.add('placeholder', function (editor) {
            editor.on('init', function () {
                var label = new Label;
                onBlur();
                tinymce.DOM.bind(label.el, 'click', onFocus);
                editor.on('focus', onFocus);
                editor.on('blur', onBlur);
                editor.on('change', onBlur);
                editor.on('setContent', onBlur);
                function onFocus() { if (!editor.settings.readonly === true) { label.hide(); } editor.execCommand('mceFocus', false); }
                function onBlur() { if (editor.getContent() == '') { label.show(); } else { label.hide(); } }
            });
            var Label = function () {
                var placeholder_text = editor.getElement().getAttribute("placeholder") || editor.settings.placeholder;
                var placeholder_attrs = editor.settings.placeholder_attrs || { style: { position: 'absolute', top: '2px', left: 0, color: '#aaaaaa', padding: '.25%', margin: '5px', width: '80%', 'font-size': '17px !important;', overflow: 'hidden', 'white-space': 'pre-wrap' } };
                var contentAreaContainer = editor.getContentAreaContainer();
                tinymce.DOM.setStyle(contentAreaContainer, 'position', 'relative');
                this.el = tinymce.DOM.add(contentAreaContainer, "label", placeholder_attrs, placeholder_text);
            }
            Label.prototype.hide = function () { tinymce.DOM.setStyle(this.el, 'display', 'none'); }
            Label.prototype.show = function () { tinymce.DOM.setStyle(this.el, 'display', ''); }
        });

        tinymce.init({selector: ".EditorControl",plugins: ["placeholder"]});

    </script>
</head>
<body>
    <textarea class="EditorControl" placeholder="Bhanu Pratap welcomes you, please enter some text here...."></textarea>
</body>
</html>
  1. ここでは、ラベルを追加して、tinymceのDOMオブジェクト「tinymce.DOM.bind(label.el、 'click'、onFocus);」のバインドメソッドに渡します。
  2. クリック時またはエディターにテキストがある場合にプレースホルダーを非表示にします。
  3. プレースホルダーの色を#aaaaaaに設定すると、要件に応じて変更できます。
  4. パディングを.25%に、マージンを5pxに、プレースホルダーのfont-sizeを17pxに設定すると、これらの設定は要件に応じて変更できます。
  5. プレースホルダーメッセージも変更して、意味のあるマナーに設定できます。 enter image description here

ありがとう... :)

7
Bhanu Pratap

TinyMCE 3以下では、プラグインは正常に動作します。プラグインはTinyMCE 4では使用できませんが、初期化時にプレースホルダーを追加し、フォーカスでそれを削除することができます。 TinyMCEはiframeを使用していることを思い出してください。

tinymce.init({
  //here all the rest of the options
  //xxxxx
  //Add the placeholder
  setup: function (editor) {
    editor.on('init', function(){
      if (tinymce.get('Text').getContent() == ''){
        tinymce.get('Text').setContent("<p id='#imThePlaceholder'>Your Nice text here!</p>");
      }
    });
    //and remove it on focus
    editor.on('focus',function(){
      $('iframe').contents().find('#imThePlaceholder').remove();
    });
})
3
andyk

TinyMCE 5.2にはインラインプレースホルダー用の新機能があります。カスタムプレースホルダーを提供するために今できることの例:

<script type="text/javascript">
tinymce.init({
    selector: "textarea#classic"
});
tinymce.init({
    selector: "div#inline",
    inline: true,
    placeholder: "Type here..."
});
</script>

ソース: https://github.com/tinymce/tinymce/issues/481

0
liebezeit