標準のテキストエリアの場合、placeholder=""
を使用します。 tinymceを拡張して、このように機能させるにはどうすればよいですか。
CKEditorの場合と同様: http://alfonsoml.blogspot.com.es/2012/04/placeholder-text-in-ckeditor.html
プレースホルダープラグイン は私にとってはうまくいきました。このプラグインは、TinyMCEエディターにHTML5プレースホルダー属性機能をもたらします。
<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>
ありがとう... :)
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();
});
})
TinyMCE 5.2にはインラインプレースホルダー用の新機能があります。カスタムプレースホルダーを提供するために今できることの例:
<script type="text/javascript">
tinymce.init({
selector: "textarea#classic"
});
tinymce.init({
selector: "div#inline",
inline: true,
placeholder: "Type here..."
});
</script>